seklyuts
224107e96d
авторассчёт скорости uart перед клоками: EALLOW; ClkCfgRegs.LOSPCP.bit.LSPCLKDIV = 2; EDIS; ибо сбрасывается при ресете хардварном в 0
40 lines
678 B
C
40 lines
678 B
C
//###########################################################################
|
|
//
|
|
// FILE: epwm_test.c
|
|
//
|
|
|
|
//
|
|
//
|
|
//###########################################################################
|
|
//
|
|
// in 2838x_FLASH_lnk_cpu1.cmd
|
|
// .bss : > RAMGS0 // instead of RAMLS5
|
|
//###########################################################################
|
|
|
|
//
|
|
// Included Files
|
|
//
|
|
#include "f28x_project.h"
|
|
#include "init_perif.h"
|
|
#include "frmmstr_run.h"
|
|
#include "adc_init.h"
|
|
#include "biss.h"
|
|
|
|
void main(void)
|
|
{
|
|
InitPerif();
|
|
|
|
for(;;)
|
|
{
|
|
// asm (" NOP");
|
|
frmmstr_run();
|
|
// AdcRun();
|
|
BissClkgenRun();
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// End of file
|
|
//
|