Hi everyone, I'm tryin to learn how to use stm32f4 boards. But I have a problem when I create new project libraries file doesn't exist as it was. I did not see problem like this before while using stm32f1xx series, and also there is a warning like th...
Hi everyone,I am trying to read a laser sensor through UART of STM32F4 inside Simulink. The laser sensor's refresh rate is 10 Hz approximately but it does not give the data periodically. I am using UART Interrupt for reading action. There are two cas...
Hello, I have installed previous version of Atollic (< 9.3) before following the official installation guide, but now it seems to be outdated since the downloadable file isn't a .tar.gz file anymore, but now just a .gz file. I am using EndeavourOS L...
Hello,I am reading out of the book, "Embedded Systems Fundamentals with ARM Cortex-M Based Microcontrollers - A Practical Approach Nucleo-F091RC Edition, 2nd Edition. (DEAN)."He reviews the peripherals on the NUCLEO-F091RC and goes into detail on how...
I am trying to port some Arduino library to stm32. In Arduino, millis() returns the number of milliseconds since boot. Is there an equivalent function in stm32? I am using stm32f103 MCU.
Hello everyone,I have an STM32LO discovery board. Using it for a big project in IoT. How can i track the status of the onboard LED and write that data to the EEPROM? Say the led is on, saves that status and duration, then sends it as a packet to TTN....
How can I write and overwrite random integers onto onboard EEPROM and then read the same saved value from onboard EEPROM for further processing on the stm32L072z LoRa sigfox discovery board?
Hi, set stm32H750 tim, Error in 'deviceManage/Function-Call Subsystem/Timers': Initialization commands cannot be evaluated. TIMERS_Config function : Can not find which APB timer TIM1 is connected to.Default preference value STM32TIMAPB set to APB1 i...
I implement the eeprom emulation library for the STM32F423 controller and was wondering if the variables are 16 bits can I use the virtual addresses like this: uint16_t VirtAddVarTab[NB_OF_VAR] = {0x1, 0x2, 0x3};Or do I need to keep space like 0x1, 0...