| 1 | #include "F2837xD_device.h" |
| 2 | #include "F2837xD_Examples.h" |
| 3 | #include "F2837xD_GlobalPrototypes.h" |
| 4 | #include "rtwtypes.h" |
| 5 | #include "Inverter_001.h" |
| 6 | #include "Inverter_001_private.h" |
| 7 | |
| 8 | void enableExtInterrupt (void); |
| 9 | void disableWatchdog(void) |
| 10 | { |
| 11 | int *WatchdogWDCR = (void *) 0x7029; |
| 12 | asm(" EALLOW "); |
| 13 | *WatchdogWDCR = 0x0068; |
| 14 | asm(" EDIS "); |
| 15 | } |
| 16 | |
| 17 | void configureGPIOExtInterrupt (void) |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | void enableExtInterrupt (void) |
| 22 | { |
| 23 | } |
| 24 |