User Activity

According to the datasheet the STM32L431KB has 128kb of memory. I forgot about this fact and in my linker script I added another section after  0x08020000 of 6 KB long. After debugging and testing my code I am sure that I can read/write on flash abov...
I am currently designing an application where I will read Sensors that can be integrated over time (e.g. Accelerometer, flow meter). As a first step I want to calculate whats the maximum error I could get by using the cycle counter as a unit of time....
Does anyone know if its possible to have a dedicated area memory of the Cortex to load dynamic functions during runtime? Something like an external C compiled function and send the binary through a communication interface (serial,i2c,etc) to the Micr...
Im using an STM32L452RE dev. board. and Im trying to set an interrupt once after some time. I have the following subroutines.#define MICROSECOND_TICK_COUNT 80 //clock = 80 MHZ i.e. 1e-6/(1/80e6)=80 TIM_HandleTypeDef myTimer;   void setupTimer(void){ ...
Im using the X-CUBE-EEPROM to simluate an eeprom with the flash for a nucleo development board (NUCLEO-L452RE-P).When adapting the example and debugging it, the HardFault_Handler routine from EEPROM_Emul/STM32L4/Src/stm32l4xx_it.c is called when the...