Hello, I am making a keyboard to use it myself with stm32f103 and when I follow the steps below, I cannot read the capslock and numlock leds from the computer. How can I get the status of these leds? thanks
Update the usbd_hid.c...static uint8_t USBD_HID_DataOut(USBD_HandleTypeDef *pdev, uint8_t epnum);...USBD_ClassTypeDef USBD_HID = {USBD_HID_Init,USBD_HID_DeInit,USBD_HID_Setup,NULL, /*EP0_TxSent*/ NULL, /*EP0_RxReady*/USBD_HID_DataIn, /*DataIn*/USBD_H...