45 lines
720 B
C
45 lines
720 B
C
//###########################################################################
|
|
//
|
|
// 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 "emif_init.h"
|
|
#endif
|
|
|
|
#include "init_perif.h"
|
|
#include "ipc_init.h"
|
|
|
|
void main(void)
|
|
{
|
|
InitPerif();
|
|
for(;;)
|
|
{
|
|
asm (" NOP");
|
|
ipc_run();
|
|
|
|
#ifdef CPU1
|
|
// emif_run();
|
|
// frmmstr_run();
|
|
#endif
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// End of file
|
|
//
|