//########################################################################### // // FILE: epwm_test.c // // // //########################################################################### // // in 2838x_FLASH_lnk_cpu1.cmd // .bss : > RAMGS0 // instead of RAMLS5 //########################################################################### // // Included Files // //#include "f28x_project.h" #ifdef CPU1 #include "frmmstr_run.h" #include "ExtEEPROM.h" #endif #include "init_perif.h" #include "ipc_init.h" void main(void) { InitPerif(); for(;;) { asm (" NOP"); ipc_run(); #ifdef CPU1 ExtEEPROM_run(); frmmstr_run(); #endif } } // // End of file //