2017-06-30 05:57 AM
how to enable interrupt on stm32f7xx ?
2017-06-30 06:06 AM
Hi
youssef.elmzaiti
,-Nesrine-
2017-06-30 08:39 AM
It's just for configuration of the micro STM700
2017-07-03 03:41 AM
Hi
ELMHIRI.Syrine
DAHMEN.IMEN
vera.laurent
garsi.khouloud
How to disable and enable all interrupts ,is there a function like an interrupt master switch? I want to a function to enable and disable all interrputs,I can't find it in the libraries and our froum.Can help me? Thanks
2017-07-03 04:37 AM
Hi
youssef.elmzaiti
,Please refer to NVIC design hints and tips section in
:The software uses the CPSIE I and CPSID I instructions to enable and disable interrupts. The CMSIS provides the following intrinsic functions for these instructions (STM32Cube_FW_F7_V1.7.0\Drivers\CMSIS\Include (@file core_cm7.h))
void __disable_irq(void) // Disable Interrupts
void __enable_irq(void) // Enable Interrupts
-Nesrine-
2017-07-03 05:40 AM
these two function is not available in core_cm7.h ! ( i don't use the HAL )
2017-07-03 07:48 AM
I believe they're in the compiler-specific headers, cmsis_armcc_V6.h or cmsis_gcc.h.
2017-07-03 08:15 AM
yes it's ok , but when i use the mode debugging , the vector of interruption was not enabled