📄 system.c
字号:
/*
*********************************************************************************************************
* uC/OS-II
* The Real-Time Kernel
*
* (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL
* All Rights Reserved
*
*
* uCOS_51 for MCS-51
*
* File : system.c
* By : Jean J. Labrosse
* Created by : QQ 591881218
*********************************************************************************************************
*/
#ifndef OS_MASTER_FILE
#include "..\ucos_51\ucos-ii\inc\includes.h"
#endif
void InitSystem(void) REENTRANT // 系统初始化
{
OSInit();
InitTimer0();
// InitSerial();
// InitSerialBuffer();
}
void LogoDisp(void) REENTRANT // Logo display
{
PrintStr("\n\t\t\t\t\t********************************\n");
PrintStr("\t\t\t\t\t* uC/OS-II *\n");
PrintStr("\t\t\t\t\t* The Real-Time Kernel *\n");
PrintStr("\t\t\t\t\t* uCOS_51 for MCS-51 *\n");
PrintStr("\t\t\t\t\t********************************\n\n\n");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -