User Activity

I can't write word data to specific Page flash use LL driver.This is my test function for testing.void flash_word_test(uint32_t addr,uint32_t val) { uint32_t page; ErrorStatus status; DEBUG_PRINT("\nWrite value: 0x%x to address: 0x%x\n",val,addr);...
Hi Comunity. This is my code project code to enter to stop modeNVIC_InitTypeDef NVIC_InitStructure; GPIO_InitTypeDef GPIO_InitStructure; /* Enable PWR APB1 Clock */ RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR, ENABLE);   /* Allow access to R...
Hi Community. In my project, I use stanby mode with RCT interrupt to wake up to save power. Although I set all pin to Ananog In, the pin is still go to logic high after chip go to stanby mode. That make Bust Power IC is turn on. Please help me. I am ...
Hi Community, my application use FreeRTOS work fine when i did not use PWR_EnterSTANDBYMode. The problem is the program did not run some function like skip function after wake up, For instance: usart2_init, delay.. when I debug and put the break poin...
I need two interface with HID usb. One for Keyboard and Mouse, the other for Custom USB for transfer data. I success create for Keyboard and Mouse, but the other Custom USB is error. Is there anyway to support 2 Report Descriptor like USB library for...