1 Star 0 Fork 6

Vaine0/OSLIB

forked from KYzhang_X/OSLIB 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
oslib.c 494 Bytes
一键复制 编辑 原始数据 按行查看 历史
/**
* @file oslib.c
* @author KYzhang
* @brief OSLIB各组件初始化
* @version 0.2
* @date 2021-01-04
*
* @copyright Copyright (c) 2021
*
*/
#include "oslib.h"
//TODO: 降低各进程占用的内存空间
//TODO: 监控内存分配情况
/**
* @brief 集中初始化OSLIB中的各组件
*/
void OSLIB_Init()
{
#if defined(OSLIB_UART_MODULE_ENABLED)
OSLIB_Uart_Init();
#endif
#if defined(OSLIB_CAN_MODULE_ENABLED)
OSLIB_CAN_Init();
#endif
Debug("OSLIB Init Done.");
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/Vaine0/oslib.git
[email protected]:Vaine0/oslib.git
Vaine0
oslib
OSLIB
master

搜索帮助