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
Ashah.2028
Associate
since
2019-11-18
2023-06-14
User statistics
3
Posts
0
Solutions
0
Kudos given
0
Kudos received
STMicroelectronics Community
About Ashah.2028
Options
Report User
User Activity
Posts
Replies
This is related to Dual Core STM32H745. I want to interrupt from CPU1 to CPU2 (and vise versa). As per reference Manual page 796, NVIC position 64 & 65 can be used. Facing problem to implement the same. Suggest possible cause, please.
2019-12-13
When I use HAL_NVIC_EnableIRQ(64) from CPU1, it interrupts same core (i.e. CPU1 instead of CPU2).
With STM32H745 I want to share information between the cores. For this I defined a structure in each core and linked to shared SRAM4 region. I can successfully get data with same core write-read and M4write-M7read. But face problem for M7write-M4read.
2019-12-04
Always get '0' for M7write-M4read.
Re: With STM32H745 I want to share information between the cores. For this I defined a structure in each core and linked to shared SRAM4 region. I can successfully get data with same core write-read and M4write-M7read. But face problem for M7write-M4read.
2019-12-05
By defining as volatile, I got little success. But got satisfactory result after disable of Icache and dcache in M7 i.e. comment out SCB_EnableICache and SCB_EnableDCache functions in main file. Thank you all.