2022-02-06 16:26:45 +01:00
|
|
|
// Copyright 2021 IOsetting <iosetting(at)outlook.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#include "fw_hal.h"
|
2022-02-07 19:45:04 +01:00
|
|
|
#include <string.h>
|
2022-02-06 16:26:45 +01:00
|
|
|
|
|
|
|
__CODE uint8_t DEVICEDESC[18];
|
|
|
|
__CODE uint8_t CONFIGDESC[41];
|
|
|
|
__CODE uint8_t HIDREPORTDESC[27];
|
|
|
|
__CODE uint8_t LANGIDDESC[4];
|
|
|
|
__CODE uint8_t MANUFACTDESC[8];
|
|
|
|
__CODE uint8_t PRODUCTDESC[30];
|
|
|
|
__XDATA uint8_t HidFreature[64];
|
|
|
|
__XDATA uint8_t HidInput[64];
|
|
|
|
__XDATA uint8_t HidOutput[64];
|
2022-02-09 07:59:29 +01:00
|
|
|
USB_Request_t usb_request;
|
|
|
|
USB_EP0_Stage_t usb_ep0_stag;
|
2022-02-06 16:26:45 +01:00
|
|
|
|
|
|
|
void USB_Init();
|
|
|
|
uint8_t CalCheckSum(uint8_t *buf, uint8_t len);
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
GPIO_P3_SetMode(GPIO_Pin_0|GPIO_Pin_1, GPIO_Mode_Input_HIP);
|
|
|
|
USB_Init();
|
2022-02-07 19:45:04 +01:00
|
|
|
EXTI_Global_SetIntState(HAL_State_ON);
|
|
|
|
|
|
|
|
memset(HidOutput, 0x00, sizeof(HidOutput));
|
|
|
|
HidOutput[0] = 0xaa;
|
|
|
|
HidOutput[1] = 0x55;
|
|
|
|
HidOutput[2] = 0x02;
|
|
|
|
HidOutput[3] = 0x01;
|
|
|
|
HidOutput[4] = 0x02;
|
|
|
|
HidOutput[5] = 0x01;
|
|
|
|
HidOutput[6] = 0x02;
|
2022-02-06 16:26:45 +01:00
|
|
|
HidOutput[7] = CalCheckSum(HidOutput,7);
|
|
|
|
|
|
|
|
while (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void USB_Init()
|
|
|
|
{
|
|
|
|
SYS_EnableOscillator48M();
|
2022-02-07 18:11:50 +01:00
|
|
|
USB_SetClockSource(USB_ClockSource_6M);
|
|
|
|
USB_SetEnabled(HAL_State_ON);
|
|
|
|
USB_SetDpDmPullUp(HAL_State_ON);
|
|
|
|
EXTI_USB_SetIntPriority(EXTI_IntPriority_Highest);
|
|
|
|
|
2022-02-06 16:26:45 +01:00
|
|
|
USB_WriteReg(FADDR, 0x00);
|
|
|
|
USB_WriteReg(POWER, 0x08);
|
|
|
|
USB_WriteReg(INTRIN1E, 0x3f);
|
|
|
|
USB_WriteReg(INTROUT1E, 0x3f);
|
|
|
|
USB_WriteReg(INTRUSBE, 0x00);
|
|
|
|
USB_WriteReg(POWER, 0x01);
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Idle;
|
2022-02-07 19:45:04 +01:00
|
|
|
|
|
|
|
EXTI_USB_SetIntState(HAL_State_ON);
|
2022-02-06 16:26:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
INTERRUPT(USB_Routine, EXTI_VectUSB)
|
|
|
|
{
|
|
|
|
uint8_t intrusb;
|
|
|
|
uint8_t intrin;
|
|
|
|
uint8_t introut;
|
|
|
|
uint8_t csr;
|
|
|
|
uint8_t cnt;
|
2022-02-09 07:10:27 +01:00
|
|
|
uint16_t len = 0;
|
2022-02-06 16:26:45 +01:00
|
|
|
intrusb = USB_ReadReg(INTRUSB);
|
|
|
|
intrin = USB_ReadReg(INTRIN1);
|
|
|
|
introut = USB_ReadReg(INTROUT1);
|
2022-02-09 05:39:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset Interrupt
|
|
|
|
*/
|
2022-02-06 16:26:45 +01:00
|
|
|
if (intrusb & RSTIF)
|
|
|
|
{
|
2022-02-07 19:45:04 +01:00
|
|
|
USB_SelectEndPoint(1);
|
2022-02-06 16:26:45 +01:00
|
|
|
USB_WriteReg(INCSR1, INCLRDT);
|
2022-02-07 19:45:04 +01:00
|
|
|
USB_SelectEndPoint(1);
|
2022-02-06 16:26:45 +01:00
|
|
|
USB_WriteReg(OUTCSR1, OUTCLRDT);
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Idle;
|
2022-02-06 16:26:45 +01:00
|
|
|
}
|
2022-02-09 05:39:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint-0 Interrupt
|
|
|
|
*/
|
2022-02-06 16:26:45 +01:00
|
|
|
if (intrin & EP0IF)
|
|
|
|
{
|
2022-02-07 19:45:04 +01:00
|
|
|
USB_SelectEndPoint(0);
|
2022-02-06 16:26:45 +01:00
|
|
|
csr = USB_ReadReg(CSR0);
|
2022-02-09 05:39:39 +01:00
|
|
|
if (csr & STSTL) // Sent Stall
|
2022-02-06 16:26:45 +01:00
|
|
|
{
|
|
|
|
USB_WriteReg(CSR0, csr & ~STSTL);
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Idle;
|
2022-02-06 16:26:45 +01:00
|
|
|
}
|
2022-02-09 05:39:39 +01:00
|
|
|
|
|
|
|
if (csr & SUEND) // Setup End
|
2022-02-06 16:26:45 +01:00
|
|
|
{
|
|
|
|
USB_WriteReg(CSR0, csr | SSUEND);
|
|
|
|
}
|
2022-02-09 05:39:39 +01:00
|
|
|
|
2022-02-09 07:59:29 +01:00
|
|
|
switch (usb_ep0_stag.bStage)
|
2022-02-06 16:26:45 +01:00
|
|
|
{
|
2022-02-08 18:14:06 +01:00
|
|
|
case USB_CtrlState_Idle:
|
2022-02-09 05:39:39 +01:00
|
|
|
if (csr & OPRDY) // Out Packet Ready
|
2022-02-06 16:26:45 +01:00
|
|
|
{
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_SettingUp;
|
2022-02-08 18:14:06 +01:00
|
|
|
USB_ReadFIFO(FIFO0, (uint8_t *)&usb_request);
|
2022-02-09 07:59:29 +01:00
|
|
|
((uint8_t *)&usb_ep0_stag.wResidue)[0] = usb_request.wLength.bb.bh;
|
|
|
|
((uint8_t *)&usb_ep0_stag.wResidue)[1] = usb_request.wLength.bb.bl;
|
2022-02-08 18:14:06 +01:00
|
|
|
switch (usb_request.bmRequestType & REQUEST_TYPE_MASK)
|
2022-02-06 16:26:45 +01:00
|
|
|
{
|
2022-02-08 18:14:06 +01:00
|
|
|
case USB_RequestType_Standard:
|
|
|
|
switch (usb_request.bRequest)
|
2022-02-06 16:26:45 +01:00
|
|
|
{
|
2022-02-08 18:14:06 +01:00
|
|
|
case USB_StdReq_SetAddress:
|
|
|
|
USB_WriteReg(FADDR, usb_request.wValue.bb.bl);
|
|
|
|
break;
|
2022-02-06 16:26:45 +01:00
|
|
|
|
2022-02-08 18:14:06 +01:00
|
|
|
case USB_StdReq_SetConfiguration:
|
|
|
|
USB_SelectEndPoint(1);
|
|
|
|
USB_WriteReg(INCSR2, INMODEIN);
|
|
|
|
USB_WriteReg(INMAXP, 8);
|
|
|
|
USB_SelectEndPoint(1);
|
|
|
|
USB_WriteReg(INCSR2, INMODEOUT);
|
|
|
|
USB_WriteReg(OUTMAXP, 8);
|
|
|
|
USB_SelectEndPoint(0);
|
|
|
|
break;
|
2022-02-06 16:26:45 +01:00
|
|
|
|
2022-02-08 18:14:06 +01:00
|
|
|
case USB_StdReq_GetDescriptor:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_DataIn;
|
2022-02-08 18:14:06 +01:00
|
|
|
switch (usb_request.wValue.bb.bh)
|
|
|
|
{
|
|
|
|
case USB_DescriptorType_Device:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.pData = (uint8_t *)DEVICEDESC;
|
2022-02-08 18:14:06 +01:00
|
|
|
len = sizeof(DEVICEDESC);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USB_DescriptorType_Configuration:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.pData = (uint8_t *)CONFIGDESC;
|
2022-02-08 18:14:06 +01:00
|
|
|
len = sizeof(CONFIGDESC);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USB_DescriptorType_String:
|
|
|
|
switch (usb_request.wValue.bb.bl)
|
|
|
|
{
|
|
|
|
case 0:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.pData = (uint8_t *)LANGIDDESC;
|
2022-02-08 18:14:06 +01:00
|
|
|
len = sizeof(LANGIDDESC);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.pData = (uint8_t *)MANUFACTDESC;
|
2022-02-08 18:14:06 +01:00
|
|
|
len = sizeof(MANUFACTDESC);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.pData = (uint8_t *)PRODUCTDESC;
|
2022-02-08 18:14:06 +01:00
|
|
|
len = sizeof(PRODUCTDESC);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Stalled;
|
2022-02-08 18:14:06 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USB_DescriptorType_Report:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.pData = (uint8_t *)HIDREPORTDESC;
|
2022-02-08 18:14:06 +01:00
|
|
|
len = sizeof(HIDREPORTDESC);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Stalled;
|
2022-02-08 18:14:06 +01:00
|
|
|
break;
|
|
|
|
}
|
2022-02-09 07:59:29 +01:00
|
|
|
if (len < usb_ep0_stag.wResidue)
|
2022-02-08 18:14:06 +01:00
|
|
|
{
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.wResidue = len;
|
2022-02-08 18:14:06 +01:00
|
|
|
}
|
2022-02-06 16:26:45 +01:00
|
|
|
break;
|
2022-02-08 18:14:06 +01:00
|
|
|
|
|
|
|
default:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Stalled;
|
2022-02-06 16:26:45 +01:00
|
|
|
break;
|
2022-02-08 18:14:06 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USB_RequestType_Class:
|
|
|
|
switch (usb_request.bRequest)
|
|
|
|
{
|
|
|
|
case USB_HidReq_GetReport:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.pData = HidFreature;
|
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_DataIn;
|
2022-02-06 16:26:45 +01:00
|
|
|
break;
|
2022-02-08 18:14:06 +01:00
|
|
|
|
|
|
|
case USB_HidReq_SetReport:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.pData = HidFreature;
|
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_DataOut;
|
2022-02-06 16:26:45 +01:00
|
|
|
break;
|
2022-02-08 18:14:06 +01:00
|
|
|
|
|
|
|
case USB_HidReq_SetIdle:
|
|
|
|
break;
|
|
|
|
|
2022-02-09 07:10:27 +01:00
|
|
|
// case USB_HidReq_GetIdle:
|
|
|
|
// case USB_HidReq_GetProtocol:
|
|
|
|
// case USB_HidReq_SetProtocol:
|
2022-02-06 16:26:45 +01:00
|
|
|
default:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Stalled;
|
2022-02-08 18:14:06 +01:00
|
|
|
break;
|
2022-02-06 16:26:45 +01:00
|
|
|
}
|
2022-02-08 18:14:06 +01:00
|
|
|
break;
|
2022-02-06 16:26:45 +01:00
|
|
|
|
|
|
|
default:
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Stalled;
|
2022-02-08 18:14:06 +01:00
|
|
|
break;
|
2022-02-06 16:26:45 +01:00
|
|
|
}
|
2022-02-08 18:14:06 +01:00
|
|
|
|
2022-02-09 07:59:29 +01:00
|
|
|
switch (usb_ep0_stag.bStage)
|
2022-02-08 18:14:06 +01:00
|
|
|
{
|
|
|
|
case USB_CtrlState_DataIn:
|
|
|
|
USB_WriteReg(CSR0, SOPRDY);
|
|
|
|
goto L_Ep0SendData;
|
2022-02-06 16:26:45 +01:00
|
|
|
break;
|
2022-02-08 18:14:06 +01:00
|
|
|
|
|
|
|
case USB_CtrlState_DataOut:
|
|
|
|
USB_WriteReg(CSR0, SOPRDY);
|
2022-02-06 16:26:45 +01:00
|
|
|
break;
|
2022-02-08 18:14:06 +01:00
|
|
|
|
|
|
|
case USB_CtrlState_SettingUp:
|
|
|
|
USB_WriteReg(CSR0, SOPRDY | DATEND);
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Idle;
|
2022-02-06 16:26:45 +01:00
|
|
|
break;
|
2022-02-08 18:14:06 +01:00
|
|
|
|
|
|
|
case USB_CtrlState_Stalled:
|
|
|
|
USB_WriteReg(CSR0, SOPRDY | SDSTL);
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Idle;
|
2022-02-06 16:26:45 +01:00
|
|
|
break;
|
2022-02-08 18:14:06 +01:00
|
|
|
}
|
2022-02-06 16:26:45 +01:00
|
|
|
}
|
2022-02-08 18:14:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case USB_CtrlState_DataIn:
|
2022-02-06 16:26:45 +01:00
|
|
|
if (!(csr & IPRDY))
|
|
|
|
{
|
|
|
|
L_Ep0SendData:
|
2022-02-09 07:59:29 +01:00
|
|
|
cnt = usb_ep0_stag.wResidue > 64 ? 64 : usb_ep0_stag.wResidue;
|
|
|
|
USB_WriteFIFO(FIFO0, usb_ep0_stag.pData, cnt);
|
|
|
|
usb_ep0_stag.wResidue -= cnt;
|
|
|
|
usb_ep0_stag.pData += cnt;
|
|
|
|
if (usb_ep0_stag.wResidue == 0)
|
2022-02-06 16:26:45 +01:00
|
|
|
{
|
|
|
|
USB_WriteReg(CSR0, IPRDY | DATEND);
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Idle;
|
2022-02-06 16:26:45 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
USB_WriteReg(CSR0, IPRDY);
|
|
|
|
}
|
|
|
|
}
|
2022-02-08 18:14:06 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case USB_CtrlState_DataOut:
|
|
|
|
if (csr & OPRDY)
|
2022-02-06 16:26:45 +01:00
|
|
|
{
|
2022-02-09 07:59:29 +01:00
|
|
|
cnt = USB_ReadFIFO(FIFO0, usb_ep0_stag.pData);
|
|
|
|
usb_ep0_stag.wResidue -= cnt;
|
|
|
|
usb_ep0_stag.pData += cnt;
|
|
|
|
if (usb_ep0_stag.wResidue == 0)
|
2022-02-08 18:14:06 +01:00
|
|
|
{
|
|
|
|
USB_WriteReg(CSR0, SOPRDY | DATEND);
|
2022-02-09 07:59:29 +01:00
|
|
|
usb_ep0_stag.bStage = USB_CtrlState_Idle;
|
2022-02-08 18:14:06 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
USB_WriteReg(CSR0, SOPRDY);
|
|
|
|
}
|
2022-02-06 16:26:45 +01:00
|
|
|
}
|
2022-02-08 18:14:06 +01:00
|
|
|
break;
|
2022-02-06 16:26:45 +01:00
|
|
|
}
|
|
|
|
}
|
2022-02-09 05:39:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint-1 In Interrupt
|
|
|
|
*/
|
2022-02-06 16:26:45 +01:00
|
|
|
if (intrin & EP1INIF)
|
|
|
|
{
|
2022-02-07 19:45:04 +01:00
|
|
|
USB_SelectEndPoint(1);
|
2022-02-06 16:26:45 +01:00
|
|
|
csr = USB_ReadReg(INCSR1);
|
|
|
|
if (csr & INSTSTL)
|
|
|
|
{
|
|
|
|
USB_WriteReg(INCSR1, INCLRDT);
|
|
|
|
}
|
|
|
|
if (csr & INUNDRUN)
|
|
|
|
{
|
|
|
|
USB_WriteReg(INCSR1, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-02-09 05:39:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint-1 Out Interrupt
|
|
|
|
*/
|
2022-02-06 16:26:45 +01:00
|
|
|
if (introut & EP1OUTIF)
|
|
|
|
{
|
2022-02-07 19:45:04 +01:00
|
|
|
USB_SelectEndPoint(1);
|
2022-02-06 16:26:45 +01:00
|
|
|
csr = USB_ReadReg(OUTCSR1);
|
|
|
|
if (csr & OUTSTSTL)
|
|
|
|
{
|
|
|
|
USB_WriteReg(OUTCSR1, OUTCLRDT);
|
|
|
|
}
|
|
|
|
if (csr & OUTOPRDY)
|
|
|
|
{
|
|
|
|
USB_ReadFIFO(FIFO1, HidInput);
|
|
|
|
USB_WriteReg(OUTCSR1, 0);
|
2022-02-09 05:39:39 +01:00
|
|
|
/** Write response */
|
|
|
|
if((HidInput[0] == 0xaa) && (HidInput[1] == 0x55) && (HidInput[2] == 0x01))
|
2022-02-06 16:26:45 +01:00
|
|
|
{
|
2022-02-07 19:45:04 +01:00
|
|
|
USB_SelectEndPoint(1);
|
2022-02-06 16:26:45 +01:00
|
|
|
USB_WriteFIFO(FIFO1, HidOutput, 64);
|
|
|
|
USB_WriteReg(INCSR1, INIPRDY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
__CODE uint8_t DEVICEDESC[18] =
|
|
|
|
{
|
|
|
|
0x12, //bLength(18);
|
|
|
|
0x01, //bDescriptorType(Device);
|
|
|
|
0x00,0x02, //bcdUSB(2.00);
|
|
|
|
0x00, //bDeviceClass(0);
|
|
|
|
0x00, //bDeviceSubClass0);
|
|
|
|
0x00, //bDeviceProtocol(0);
|
|
|
|
0x40, //bMaxPacketSize0(64);
|
|
|
|
0x54,0x53, //idVendor(5354);
|
|
|
|
0x80,0x43, //idProduct(4380);
|
|
|
|
0x00,0x01, //bcdDevice(1.00);
|
|
|
|
0x01, //iManufacturer(1);
|
|
|
|
0x02, //iProduct(2);
|
|
|
|
0x00, //iSerialNumber(0);
|
|
|
|
0x01, //bNumConfigurations(1);
|
|
|
|
};
|
|
|
|
|
|
|
|
__CODE uint8_t CONFIGDESC[41] =
|
|
|
|
{
|
|
|
|
0x09, //bLength(9);
|
|
|
|
0x02, //bDescriptorType(Configuration);
|
|
|
|
0x29,0x00, //wTotalLength(41);
|
|
|
|
0x01, //bNumInterfaces(1);
|
|
|
|
0x01, //bConfigurationValue(1);
|
|
|
|
0x00, //iConfiguration(0);
|
|
|
|
0x80, //bmAttributes(BUSPower);
|
|
|
|
0x32, //MaxPower(100mA);
|
|
|
|
0x09, //bLength(9);
|
|
|
|
0x04, //bDescriptorType(Interface);
|
|
|
|
0x00, //bInterfaceNumber(0);
|
|
|
|
0x00, //bAlternateSetting(0);
|
|
|
|
0x02, //bNumEndpoints(2);
|
|
|
|
0x03, //bInterfaceClass(HID);
|
|
|
|
0x00, //bInterfaceSubClass(0);
|
|
|
|
0x00, //bInterfaceProtocol(0);
|
|
|
|
0x00, //iInterface(0);
|
|
|
|
0x09, //bLength(9);
|
|
|
|
0x21, //bDescriptorType(HID);
|
|
|
|
0x01,0x01, //bcdHID(1.01);
|
|
|
|
0x00, //bCountryCode(0);
|
|
|
|
0x01, //bNumDescriptors(1);
|
|
|
|
0x22, //bDescriptorType(HID Report);
|
|
|
|
0x1b,0x00, //wDescriptorLength(27);
|
|
|
|
0x07, //bLength(7);
|
|
|
|
0x05, //bDescriptorType(Endpoint);
|
|
|
|
0x81, //bEndpointAddress(EndPoint1 as IN);
|
|
|
|
0x03, //bmAttributes(Interrupt);
|
|
|
|
0x40,0x00, //wMaxPacketSize(64);
|
|
|
|
0x01, //bInterval(10ms);
|
|
|
|
0x07, //bLength(7);
|
|
|
|
0x05, //bDescriptorType(Endpoint);
|
|
|
|
0x01, //bEndpointAddress(EndPoint1 as OUT);
|
|
|
|
0x03, //bmAttributes(Interrupt);
|
|
|
|
0x40,0x00, //wMaxPacketSize(64);
|
|
|
|
0x01, //bInterval(10ms);
|
|
|
|
};
|
|
|
|
|
|
|
|
__CODE uint8_t HIDREPORTDESC[27] =
|
|
|
|
{
|
|
|
|
0x05,0x0c, //USAGE_PAGE(Consumer);
|
|
|
|
0x09,0x01, //USAGE(Consumer Control);
|
|
|
|
0xa1,0x01, //COLLECTION(Application);
|
|
|
|
0x15,0x00, // LOGICAL_MINIMUM(0);
|
|
|
|
0x25,0xff, // LOGICAL_MAXIMUM(255);
|
|
|
|
0x75,0x08, // REPORT_SIZE(8);
|
|
|
|
0x95,0x40, // REPORT_COUNT(64);
|
|
|
|
0x09,0x01, // USAGE(Consumer Control);
|
|
|
|
0xb1,0x02, // FEATURE(Data,Variable);
|
|
|
|
0x09,0x01, // USAGE(Consumer Control);
|
|
|
|
0x81,0x02, // INPUT(Data,Variable);
|
|
|
|
0x09,0x01, // USAGE(Consumer Control);
|
|
|
|
0x91,0x02, // OUTPUT(Data,Variable);
|
|
|
|
0xc0, //END_COLLECTION;
|
|
|
|
};
|
|
|
|
|
|
|
|
__CODE uint8_t LANGIDDESC[4] =
|
|
|
|
{
|
|
|
|
0x04,0x03,
|
|
|
|
0x09,0x04,
|
|
|
|
};
|
|
|
|
|
|
|
|
__CODE uint8_t MANUFACTDESC[8] =
|
|
|
|
{
|
|
|
|
0x08,0x03,
|
|
|
|
'S',0,
|
|
|
|
'T',0,
|
|
|
|
'C',0,
|
|
|
|
};
|
|
|
|
|
|
|
|
__CODE uint8_t PRODUCTDESC[30] =
|
|
|
|
{
|
|
|
|
0x1e,0x03,
|
|
|
|
'S',0,
|
|
|
|
'T',0,
|
|
|
|
'C',0,
|
|
|
|
'8',0,
|
|
|
|
' ',0,
|
|
|
|
'F',0,
|
|
|
|
'w',0,
|
|
|
|
'L',0,
|
|
|
|
'i',0,
|
|
|
|
'b',0,
|
|
|
|
' ',0,
|
|
|
|
'H',0,
|
|
|
|
'I',0,
|
|
|
|
'D',0,
|
|
|
|
};
|
|
|
|
|
|
|
|
uint8_t CalCheckSum(uint8_t *buf, uint8_t len)
|
|
|
|
{
|
|
|
|
uint8_t i;
|
|
|
|
uint8_t cs=0;
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
cs += buf[i];
|
|
|
|
}
|
|
|
|
return cs;
|
|
|
|
}
|