mirror of
https://gitee.com/moluo-tech/AT-Command
synced 2025-06-18 08:27:51 +00:00
27 lines
708 B
C
27 lines
708 B
C
![]() |
/******************************************************************************
|
|||
|
* @brief <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*
|
|||
|
* 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 <EFBFBD><EFBFBD><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>*/
|
|||
|
while (1) {
|
|||
|
module_task_process(); /*<2A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѯ*/
|
|||
|
}
|
|||
|
}
|