User Activity

Hello USB HID gurus !How I can send on IN endpoint 0x81 for HID Custom Descriptor with HAL ?I use USBD_CUSTOM_HID_SendReportand endpoint is 0x81 until #define EP_ADDR_MSK 0xFUI can see my report data on USB Bus Analyzer at OUT EP 0x1 and...
CPU 210MHzIf you run IRQ code from flash you have about 5 times more cpu cycles as needed (7WS)if you switch on ART accelerater and prefetch: for loop gets slower no influence on IRQ latencyyou could not run code from internal SRAM because of missin...
Hi folks, I have tried to run my complete program out of internal SRAM to speed up the IRQsbut if I come to svc 0 it failsprvPortStartFirstTask: 20005ee0: ldr r0, [pc, #32] ; (0x20005f04) 20005ee2: ldr r0, [r0, #0] 20005ee4: ldr r...
I detected that ART accelerator and prefetch is not enabled. Why for loop gets slower if if I switch both on ? /* USER CODE BEGIN SysInit */   #if defined(FLASH_ART_ON) // enable ART for Flash (x8 Booster) int FLASH_ACR_REG=0; volatile unsign...
Hardware & HAL: STM32F767ZI Nucleo 210MHzCube MCU Package 1.15Application USB (12Mbit FS) to UART bridge 115200 baud, 8bit 1s 1s, full duplex test (RX-TX bridged)Tested:The test on /dev/ttyACM0 is running without any errors on all packet 2-64KB sizes...