39 lines
577 B
C
39 lines
577 B
C
/*
|
|
* Copyright (c) 2006-2024, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2024-05-04 RT-Thread first version
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
|
|
#define DBG_TAG "main"
|
|
#define DBG_LVL DBG_LOG
|
|
#include <rtdbg.h>
|
|
#include <thread.h>
|
|
|
|
int main(void)
|
|
{
|
|
thread_IO_Key();
|
|
thread_Wireless();
|
|
thread_LCD();
|
|
thread_IO_Speed();
|
|
thread_485();
|
|
thread_IO_ADC();
|
|
|
|
while (1)
|
|
{
|
|
// LOG_D("Hello RT-Thread!");
|
|
rt_thread_mdelay(10);
|
|
}
|
|
|
|
return RT_EOK;
|
|
}
|
|
|
|
|
|
|
|
|