CodeBrick/user/main.c
2020-07-11 11:45:15 +08:00

28 lines
760 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/******************************************************************************
* @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>ѯ*/
}
}