Hello,
I want to perform RAM test at Run time. So I try to disable all MQX interrupt before jumping to the RAM test code using
_int_disable()
RAMTest()
_int_enable()
But still the MQX interrupt happen and my code stuck in between.
So could somebody tell me how to disable all the MQX interrupt even with priority levels upto 7 also before jumping to RAM test code.
Or is there any function or preprocessor directives in MQX to enter and exit from critical section?