Browse
STMicroelectronics Community
FAQs
Sign In
Product forums
STM32 MCUs
STM32 MCUs Products
STM32 MCUs Boards and hardware tools
STM32 MCUs Software development tools
STM32 MCUs Embedded software
STM32 MCUs TouchGFX and GUI
STM32 MCUs Motor control
STM32 MCUs Security
STM32 MCUs Wireless
STM32 MPUs
STM32 MPUs Products
STM32 MPUs Boards and hardware tools
STM32 MPUs Embedded software and solutions
STM32 MPUs Software development tools
MEMS and sensors
MEMS (sensors)
Imaging (sensors)
Automotive and Transportation
Automotive MCUs
AutoDevKit Ecosystem
GNSS positioning
Edge AI
Interface and connectivity ICs
Power management
ST25 NFC/RFID tags and readers
STM8 MCUs
Others: hardware and software
Analog and audio
Knowledge base
STM32 MCUs
STM32 MPUs
MEMS and sensors
Analog and audio
EMI filtering and signal conditioning
Interface and connectivity ICs
Power management
Quality & reliability
Academy
About
Community guidelines
Feedback forum
Community blog
Developer news
sra
Associate II
since
2022-08-09
2023-06-14
User statistics
4
Posts
0
Solutions
0
Kudos given
0
Kudos received
STMicroelectronics Community
About sra
Options
Report User
User Activity
Posts
Replies
In STM32L562VET6Q Microcontroller in that my question is how to configure/map SRAM 2 memory address as 0x2003 0000, so , i can use it as contiguous memory of both SRAM 1 and SRAM 2 i need big size continuous memory block.
2023-03-15
"64 Kbytes located at address 0x0A03 0000 with hardware parity check (SRAM2). This memory is also mapped at address 0x2003 0000 offering a contiguous address space with the SRAM1"
how to write data into stm32l5 flash memory
2022-08-12
uint64_t write = 0x1111111122222222;HAL_FLASH_Unlock();if(HAL_FLASH_Program(FLASH_TYPEPROGRAM_DOUBLEWORD,0x0807F000,write)==HAL_OK) { HAL_GPIO_WritePin(GPIOG,GPIO_PIN_12,GPIO_PIN_RESET); } HAL_FLASH_Lock();
how to transfer hex file between two stm32 boards. I am trying to transfer the hex file which is present in one stm32 board and i need to transfer it to another stm32 board via uart ?
2022-08-09
Re: how to write data into stm32l5 flash memory
2022-08-12
yes