STM32 delay not working as expected with USB HID
I am trying to send a shift + U keypress to the screen every two seconds but it is just printing U's nonstop. Why isn't it delaying for two seconds? How do I properly debug stuff like this in the future? while (1) { hid_report_buffer[0] = 0x02;...