This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

External Interrupt Priority Level Register Cortex M3

Note: This was originally posted on 15th July 2010 at http://forums.arm.com

Hi,
I am trying to program the priority level of external interrupts but without any luck

snippet from the code
-------------------------------------------------------------------------------
#define PRI_3     ((volatile unsigned char *) (0xE000E403))
   *PRI_3 = data;
   __DSB();
------------------------------------------------------------------------------

When I try to read back the data written using

  data = *PRI_3;
  __DSB();

I don't get the expected data
Do I have to set any other registers?

Thanks
Vinayak
0