User Activity

Posted on September 29, 2017 at 13:53Using CubeMx with automatic Makefile generation.I want to alter the build target name.Example:CubeMx creates a build target in the Makefile:TARGET = myfirmwareBut I want to append a version:TARGET = myfirmware_$(...
Posted on September 13, 2017 at 10:07Beginner working with STM32L452:I have enabled interrupts for some GPIO pins through CubeMx.CubeMX generates this function, and it gets called as expected on GPIO interrupt:void EXTI15_10_IRQHandler(void)How do I...
Posted on August 23, 2017 at 15:45I have managed to update firmware via CAN and the SSTM32 builtin bootloader.I have a 40Kbyte firmware that works fine, after firmware upload I can run it with the 'Go' command.I have another 66Kbyte firmware that al...
Posted on July 31, 2017 at 14:41Beginner working with STM32L452:I have TIM2 set up as encoder-based timer. Works perfect.Now I want an interrupt whenever the TIM2 reaches a certain value (position).I tried to enable timer interrupt through HAL_TIM_E...