Where in Cube IDE are the linker options?
For example how does one put an array or a stack into the CCM RAM?
For example how does one put an array or a stack into the CCM RAM?
I am using HAL_UART_ErrorCallback() function to capture any error.When I reset the the board by cutting the power off everything works fine. But if I reset it with reset button or software reset one of the uart freezes and I don't see any error. I ha...
I make a code that is just send SPI data, and the MISO should not return anything. Here is my code:int main(void){ char user_data[] = "Hello World!"; GPIO_ButtonInit(); SPI2_GPIOInits(); SPI2_Inits(); SPI_SSOEConfig(SPI2,ENABLE); while(1) { whil...
Hello!The STM32H750xx data sheet states that the MCU has 2KB of space in flash memory for "option bytes." However, the programming reference describes on page 176 that "Table 21 lists all the user option bytes managed through the embedded Flash memor...
Hi all, I'm editing this post because the forum doesn't allow me to delete it, and it might help someone else..I was having an issue where simply generating a default NUCLEO-H755ZI-Q project from the current latest CubeMX for Cube IDE and following t...
I am a newbie and trying to make my hands dirty in STM32l476 Discovery board.I am trying to control the brightness of an LED which is connected onboard at GPIO PIN PE8. The TIMER on this pin is TIM1 CH1N. What I have tried is till now is below. I wou...
The ram on the STM32H7 is segmented into non-contiguous sections. How would one be able to dynamically allocate memory in different sections of RAM? eg: put large objects in AXI-SRAM and small object that need fast access on DTCM.I'm wondering if thi...
I cannot program the STM32L with the STM32 ST-Link Ultility (hex file).Did reseach on internet and I know there is a lot on this subject already!The setup is easy, I have a replica ST-linkv2 from China and an official Stlink v3 programmer.I'm program...
hello everybodyI receive date and time from SIM800L GSM module with NTP command from UART: (like below)+CCLK: "21/05/11,05:45:23+6how update stm32 HAL RTC with received time from SIM800L or other GSM module?