I got a curious question, perhaps somebody can help me out.
If I write a 0x00 to BASEPRI, then all interrupts are unmasked. If I write a 0x80 all interrupts that have a PRIO of less or equal to 0x80 are masked. So far so good. The TM4C really implements only 3 bits of priority, so the LSBs should not matter.
But what happens if I write a 0x01 to BASEPRI ? Will that mask ALL interrupts that have a PRIO of less or equal to 0x01, which means all interrupts on a TM4C ? Or does it do the same as writing a 0x00 ?
- Thomas