User Activity

A BOT protocol read fail error is occurring in usbh_msc.bot.c:- See "*** MY MOD-" below USBH_StatusTypeDef USBH_MSC_BOT_Process (USBH_HandleTypeDef *phost, uint8_t lun) { ... else if (URB_Status == USBH_URB_STALL) { /* This is Data IN Stage STALL...
The  "Introduction to secure firmware install (SFI) for STM32 MCUs" AN4992 does not list the H743 as a supported device.The Secure Programming tab of the latest Cube Programmer V2-18-0 (Jan 20205) states it only supports STM32U0-5 & WBA.Yet the SFI/S...
I've read the X-CUBE-SBSFU Secure Boot and Secure Firmware documents and it doesn't explain if these are tools, with GUI, or just an API, which should really be explained at the start.If you know all about it I am sure these documents are just great,...
Are there any issue using both controllers in host mode?  USBH_StatusTypeDef USBH_LL_Init(USBH_HandleTypeDef *phost) { /* Init USB_IP */ if (phost->id == HOST_FS) { /* Link the driver to the stack. */ hhcd_USB_OTG_FS.pData = phost; phost...
The Escape key was mapped to 0x00 in the USB HID code, I added it and it works fine but I'm curious to know why it was absent?  Bug/oversight, another method used for Escape key detection?  #ifdef QWERTY_KEYBOARD static const uint8_t HID_KEYBRD_Ke...