2023-11-16 09:16:41 +03:00
|
|
|
//###########################################################################
|
|
|
|
//
|
|
|
|
// 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"
|
2023-12-19 10:50:15 +03:00
|
|
|
#include "emif_init.h"
|
2023-11-16 09:16:41 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "init_perif.h"
|
|
|
|
#include "ipc_init.h"
|
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
InitPerif();
|
|
|
|
for(;;)
|
|
|
|
{
|
2024-05-16 09:50:13 +03:00
|
|
|
// asm (" NOP");
|
2023-11-16 09:16:41 +03:00
|
|
|
ipc_run();
|
2023-12-08 08:44:59 +03:00
|
|
|
|
2024-05-16 09:50:13 +03:00
|
|
|
//#ifdef CPU1
|
2024-01-16 14:00:29 +03:00
|
|
|
// emif_run();
|
2023-11-24 14:37:07 +03:00
|
|
|
// frmmstr_run();
|
2024-05-16 09:50:13 +03:00
|
|
|
//#endif
|
2023-11-16 09:16:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// End of file
|
|
|
|
//
|