Hello everyone,I've a project where I'm trying to emulate a mass storage device (MSC) using the STM32F103C8T6. The data itself should be stored on the Serial NOR-Flash (Winbound W25Q64...), operations are done with this library. Using the library in ...
Hello everyone,I'm currently trying to emulate both a keyboard and the mouse as hid-devices using stm32 and the descriptor that contains two collections.The descriptor: // Keyboard
0x05, 0x01,
0x09, 0x06, // USA...
Ok, so I switched back to the example HID-device from STM32CubeIDE, but the mouse still doesn't work.The codebase itself is rather small, the main function (using the mouse, doesn't work): int main(void)
{
HAL_Init();
SystemClock_Config();
MX_...