39 lines
556 B
C
39 lines
556 B
C
|
|
//###########################################################################
|
||
|
|
//
|
||
|
|
// FILE: epwm_test.c
|
||
|
|
//
|
||
|
|
|
||
|
|
//
|
||
|
|
//
|
||
|
|
//###########################################################################
|
||
|
|
//
|
||
|
|
|
||
|
|
//###########################################################################
|
||
|
|
|
||
|
|
//
|
||
|
|
// Included Files
|
||
|
|
//
|
||
|
|
#include "f28x_project.h"
|
||
|
|
#include "init_perif.h"
|
||
|
|
#include "frmmstr_run.h"
|
||
|
|
#include "ExtEEPROM.h"
|
||
|
|
|
||
|
|
|
||
|
|
void main(void)
|
||
|
|
{
|
||
|
|
|
||
|
|
InitPerif();
|
||
|
|
|
||
|
|
for(;;)
|
||
|
|
{
|
||
|
|
asm (" NOP");
|
||
|
|
ExtEEPROM_run();
|
||
|
|
frmmstr_run();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
//
|
||
|
|
// End of file
|
||
|
|
//
|