AT-Command/samples/none_os/user/main.c

27 lines
701 B
C
Raw Permalink Normal View History

2022-12-31 14:42:31 +00:00
/******************************************************************************
* @brief
*
* Copyright (c) 2020, <morro_luo@163.com>
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
******************************************************************************/
#include "config.h"
#include "module.h"
#include <stdio.h>
/*
* @brief
* @return none
*/
int main(void)
{
//NVIC_SetVectorTable(NVIC_VectTab_FLASH, APP_ADDRESS);
module_task_init(); /*模块初始化*/
while (1) {
module_task_process(); /*任务轮询*/
}
}