User Activity

I've got a working example that builds from the sdk with the classic project structure:../Core/Inc : Contains header files from SDKs Firmware/Eval/Inc and Firmware/Inc (i.e. both adc.h and adc_driver.h which is likely not correct)../Core/Src: Contain...
I had no issue writing to and erasing the banks on my nucleo a couple times but all of a sudden it started failing. I unlock the flash successfully clear flash error flags and try do a bank erase: FLASH_EraseInitTypeDef erase; erase.TypeErase = FLA...
I'm using an stm32L4R5 with 2 MB dual bank flash. All I am doing is running application from bank 1, copying it over to bank 2, rebooting, running app from bank 2 copying over to bank 1 process continues. This all works fine when I set SCB->VTOR = 0x...
I am using STMCubeIDE to program a nucleo-L4R5ZI. When i go to debug i get "Break at address "0x1fff523e" with no debug information available, or outside of program code." This only happens with my L4R5ZI boards. The code doesn't run unless I disconn...
I am trying to receive some uart input from data that is an unknown size. I should end on \r\n or on an OK or ERROR received. The issue I am having with interrupts(HAL_Receive_IT()) is obviously losing too much data. I have also tried to implement t...