40 lines
1.6 KiB
Plaintext
40 lines
1.6 KiB
Plaintext
//************************************************************
|
|
// Copyright (c)
|
|
// FileName : main.c
|
|
// Module Function :
|
|
// Instructions : Contains the MCU initialization function and its H file
|
|
//************************************************************
|
|
/********************Includes************************************************************************/
|
|
#include "SC_Init.h" //MCU Init header£¬Include all IC resource headers
|
|
#include "SC_it.h"
|
|
#include "..\Drivers\SCDriver_list.h"
|
|
#include "HeadFiles\SysFunVarDefine.h"
|
|
/**************************************Generated by EasyCodeCube*************************************/
|
|
|
|
/*************************************.Generated by EasyCodeCube.************************************/
|
|
/*****************************************************************************************************
|
|
* Function Name: main
|
|
* Description : This function implements main function.
|
|
* Arguments : None
|
|
* Return Value : None
|
|
******************************************************************************************************/
|
|
void main(void)
|
|
{
|
|
/*<Generated by EasyCodeCube begin>*/
|
|
|
|
/*<UserCodeStart>*//*<SinOne-Tag><3>*/
|
|
SC_Init(); /*** MCU init***/
|
|
//<SinOne-Flag><3>/*<UserCodeEnd>*//*<SinOne-Tag><3>*/
|
|
/*<UserCodeStart>*//*<SinOne-Tag><4>*/
|
|
/*****MainLoop*****/
|
|
while(1)
|
|
{
|
|
/*<UserCodeStart>*//*<SinOne-Tag><5>*/
|
|
/*****User program*****/
|
|
//<SinOne-Flag><5>/*<UserCodeEnd>*//*<SinOne-Tag><5>*/
|
|
/*<Begin-Inserted by EasyCodeCube for Condition>*/
|
|
}
|
|
//<SinOne-Flag><4>/*<UserCodeEnd>*//*<SinOne-Tag><4>*/
|
|
/*<Generated by EasyCodeCube end>*/
|
|
}
|