1 Star 4 Fork 0

RTplay/RT-OSforSTC15W

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.c 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
RTplay 提交于 2019-09-22 12:37 . qshell移植失败i
#include <stdio.h>
#include "config.h"
#include "rt_os.h"
#include "delay.h"
#include "debug_uart.h"
//#include "RTWing.h"
typedef struct msg_type {
u8 type;
void *user_data;
} MSG_TYPE;
#define APP_STACK_SIZE 30
void RestForDownload(void)//使用复位功能使单片机进入下载模式
{
if((PCON&0x10)==0) { //如果POF位=0
PCON=PCON|0x10; //将POF位置1
IAP_CONTR=0x60; //软复位,从ISP监控区启动
} else {
PCON=PCON&0xef; //将POF位清零
}
}
static STACK_TYPE app1_stack[APP_STACK_SIZE]; //建立一个 30 字节的静态区堆栈
void app_task_1(void)
{
while (1) {
os_tick_sleep(1);
//try_to_get_data(RTWingProcess);
}
}
/******************** 主函数 **************************/
void main(void)
{
RestForDownload();
debug_uart_init();
//InitRTWing();
debug_print("STC15F2K60S2 RT-OS Test Prgramme!\r\n");
//PrintRTWing();
os_init();
os_task_create(app_task_1, 1, 20, OS_DEFAULT_TIME_QUANTA, app1_stack, APP_STACK_SIZE);
os_start_task();
while(1);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/RTplay/RT-OSforSTC15W.git
git@gitee.com:RTplay/RT-OSforSTC15W.git
RTplay
RT-OSforSTC15W
RT-OSforSTC15W
master

搜索帮助