2023-08-23 16:31:55 +03:00
|
|
|
//###########################################################################
|
|
|
|
//
|
|
|
|
// FILE: epwm_test.c
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//###########################################################################
|
|
|
|
//
|
|
|
|
|
|
|
|
//###########################################################################
|
|
|
|
|
|
|
|
//
|
|
|
|
// Included Files
|
|
|
|
//
|
|
|
|
#include "f28x_project.h"
|
|
|
|
#include "init_perif.h"
|
|
|
|
#include"frm_uart.h"
|
2023-09-06 17:01:47 +03:00
|
|
|
#include "spi_init.h"
|
2023-09-07 16:40:27 +03:00
|
|
|
#include "BL25CM1A.h"
|
|
|
|
#include "GD25Q16ETIGR.h"
|
2023-08-23 16:31:55 +03:00
|
|
|
//
|
|
|
|
// Main
|
|
|
|
//
|
2023-09-04 09:40:41 +03:00
|
|
|
volatile uint16_t test=0x1234;
|
|
|
|
volatile uint16_t test1=0x6789;
|
|
|
|
volatile uint16_t counter=0 ;
|
|
|
|
volatile uint16_t counter1=0 ;
|
|
|
|
volatile uint16_t counter2=0 ;
|
2023-08-23 16:31:55 +03:00
|
|
|
|
2023-09-06 17:01:47 +03:00
|
|
|
|
2023-09-07 16:40:27 +03:00
|
|
|
uint16_t sendNow = 0;
|
2023-09-06 17:01:47 +03:00
|
|
|
|
|
|
|
|
2023-08-23 16:31:55 +03:00
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
InitPerif();
|
|
|
|
FRMUartInit();
|
2023-09-07 16:40:27 +03:00
|
|
|
// GD25Q16ETIGR_en();
|
|
|
|
// Bl25cm1a_en();
|
2023-08-23 16:31:55 +03:00
|
|
|
//
|
|
|
|
// IDLE loop. Just sit and loop forever (optional):
|
|
|
|
//
|
|
|
|
for(;;)
|
|
|
|
{
|
2023-09-06 17:01:47 +03:00
|
|
|
asm (" NOP");
|
|
|
|
|
2023-09-07 16:40:27 +03:00
|
|
|
// if(sendNow)
|
|
|
|
// {
|
|
|
|
// Bl25cm1a_write();
|
|
|
|
// GD25Q16ETIGR_write();
|
|
|
|
// sendNow = 0;
|
|
|
|
// }
|
2023-09-04 09:40:41 +03:00
|
|
|
|
|
|
|
if(FMSTR_is_enable()) {
|
|
|
|
if(counter < 100) counter++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
counter = 0;
|
|
|
|
if(counter1 < 100) counter1++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
counter1=0;
|
|
|
|
counter2++;
|
|
|
|
}
|
|
|
|
}
|
2023-08-23 16:31:55 +03:00
|
|
|
FMSTR_Poll();
|
2023-09-04 09:40:41 +03:00
|
|
|
FMSTR_Recorder();
|
|
|
|
FMSTR_enable_clr();
|
|
|
|
}
|
2023-08-23 16:31:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// End of file
|
|
|
|
//
|