event_init.c

来自「一个简单的小型操作系统」· C语言 代码 · 共 44 行

C
44
字号

/*****************************************************************************
 *
 * Module      : init.c
 * Description : initializes platform specific services.
 * OS          : SLOS 0.09
 * Platform    : e7t
 * History     :
 *
 *  December 9th 2001, Andrew N. Sloss
 *  - created this file 
 *
 *****************************************************************************/

/*****************************************************************************
 * IMPORTS
 *****************************************************************************/

#include "button_service.h"

/*****************************************************************************
 * ROUTINE
 *****************************************************************************/

/* -- eventServicesInit -------------------------------------------------------
 *
 * Descriptions : initalizes the platform specific services. A part from
 *                tick service which has a unique set of interfaces.
 *
 * Parameters   : none..
 * Return       : none..
 * Notes        :
 * 
 *   Simple routine to concentrate all initialization of 
 *   services into a single routine...
 *
 */
 
void eventServicesInit(void)
{
eventButtonInit();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?