Posted on May 17, 2011 at 13:05I wrote a bootloader that checks SD card and loads new firmware if available on SD It was pretty easy, all you need is to start from the simplest bootloader example for stm32 and just go from there and add simple CAN h...
Posted on May 17, 2011 at 13:03i assume you found bootloading examples floating around the forum don't forget to setup new interrupt table location for the app you'r etrying to launch from bootloader. (usually done in NVIC init function in examples)...
Posted on May 17, 2011 at 12:59CAN with PLL works (HSE feeds PLL), below is the code i use to ini clock Code: /* Enable HSE */ RCC_HSEConfig(RCC_HSE_ON); /* Wait till HSE is ready */ while(RCC_GetFlagStatus(RCC_FLAG_HSERDY) == RESET) { } /* Se...
Posted on May 17, 2011 at 12:57Hi all I am making some progress in building up a gcc based framework for having such things as printf/scanf working over serial, as well as sprintf/sscanf and last but not least - fscanf/fprinf implementation using Ch...