mirror of
https://gitee.com/moluo-tech/CodeBrick.git
synced 2025-01-16 04:32:51 +08:00
28 lines
760 B
C
28 lines
760 B
C
/******************************************************************************
|
||
* @brief <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
*
|
||
* Copyright (c) 2020, <master_roger@sina.com>
|
||
*
|
||
* SPDX-License-Identifier: Apache-2.0
|
||
*
|
||
* Change Logs:
|
||
* Date Author Notes
|
||
******************************************************************************/
|
||
#include "config.h"
|
||
#include "module.h"
|
||
#include <stdio.h>
|
||
|
||
/*
|
||
* @brief <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
* @return none
|
||
*/
|
||
int main(void)
|
||
{
|
||
//NVIC_SetVectorTable(NVIC_VectTab_FLASH, APP_ADDRESS);
|
||
module_task_init(); /*ģ<><C4A3><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC>*/
|
||
printf("software version:%s\r\n", SW_VER);
|
||
while (1) {
|
||
module_task_process(); /*<2A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѯ*/
|
||
}
|
||
}
|