User Activity

Getting this error "assertion "Balloc succeeded" failed: file "/build/gnu-tools-for-stm32_10.3-2021.10.20211105-1100/src/newlib/newlib/libc/stdlib/mprec.c", line 778" in runtime for stm32l452ret6p microcontroller. I am doing baremetal programming and...
Hi,I face some issue with the interrupts of STM32L452RET6P. I have two codes running in the controller one is a custom bootloader code and other is an application code which stored in flash memory. when the device get reset it will run the custom boo...
Hi,I was trying to convert a code written in HAL to baremetal for reducing the size. The code in HAL has 90KB file size when build in Debug mode and has 50KB file size in Release mode. In case of baremetal 73KB and 63KB respectively for Debug and Rel...
I am using STM32L412 microcontroller and doing baremetal programming for timer interrupt. I am using Timer 6 and base clock of 4MHZ is used as HCLK. However my interrupt is not firing below mentioning my code. count variable is also not updatingint m...
I am trying to do RTC wakeup interrupt using STM32L412RBT6 microcomtroller in baremetal c, but the interrupt is not firing, below mentioning my code.int main(void){ LedConfig(); Tim6Config(); RTC_ClockConfig(); RTC_Init();  /* Loop forever */ while(1...