|
|
|
|
|
by jlubawy
3415 days ago
|
|
The MSP430x5xx and MSP430x6xx families have this problem. From the user-guide [1]: > Include at least one instruction between the clear of an interrupt enable or interrupt flag and the EINT instruction. For example: Insert a NOP instruction in
front of the EINT instruction. > Include at least one instruction between DINT and the start of an code
sequence that requires protection from interrupts. For example: Insert a NOP
instruction after the DINT Luckily if you use the MSP compiler's intrinsic functions to enable/disable interrupts it takes care of this for you. [1] http://www.ti.com/lit/pdf/slau208 |
|