I am using CubeSuite environment and ccrl compiler to build software, and in my code I want to disable all interrupts before performing memory write operation and enable all interrupt once the operation is completed. How can I do that, any ...Read more
I am using CubeSuite environment and ccrl compiler to build software, and in my code I want to disable all interrupts before performing memory write operation and enable all interrupt once the operation is completed.
How can I do that, any document or demo code would be of great help?
Read less
Use inline assembly for the EI / DI instructions, or use the intrinsic functions: This is from the help-file "Compiler-CCRL.chm" located in the folder "C:\Program Files (x86)\Renesas Electronics\CS+\CC\CC-RL\Help".
Use inline assembly for the EI / DI instructions, or use the intrinsic functions:
This is from the help-file “Compiler-CCRL.chm” located in the folder “C:\Program Files (x86)\Renesas Electronics\CS+\CC\CC-RL\Help”.
See less