OSDN Git Service

42fd5ddc38931de0492f704101f079c9a3cd5461
[mochi/master.git] / src / kernel / TimerMng / TimerMngInit.c
1 /******************************************************************************/
2 /* src/kernel/TimerMng/TimerMngInit.c                                         */
3 /*                                                                 2017/03/11 */
4 /* Copyright (C) 2016-2017 Mochi.                                             */
5 /******************************************************************************/
6 /******************************************************************************/
7 /* インクルード                                                               */
8 /******************************************************************************/
9 /* 共通ヘッダ */
10 #include <stdarg.h>
11
12 /* 外部モジュールヘッダ */
13 #include <Cmn.h>
14 #include <Debug.h>
15
16 /* 内部モジュールヘッダ */
17 #include "TimerMngPit.h"
18
19
20 /******************************************************************************/
21 /* 定義                                                                       */
22 /******************************************************************************/
23 /* デバッグトレースログ出力マクロ */
24 #ifdef DEBUG_LOG_ENABLE
25 #define DEBUG_LOG( ... )                        \
26     DebugLogOutput( CMN_MODULE_TIMERMNG_INIT,   \
27                     __LINE__,                   \
28                     __VA_ARGS__ )
29 #else
30 #define DEBUG_LOG( ... )
31 #endif
32
33
34 /******************************************************************************/
35 /* グローバル関数定義                                                         */
36 /******************************************************************************/
37 /******************************************************************************/
38 /**
39  * @brief       タイマ管理初期化
40  * @details     タイマ管理内サブモジュールの初期化を行う。
41  */
42 /******************************************************************************/
43 void TimerMngInit( void )
44 {
45     /* PIT管理サブモジュール初期化 */
46     TimerMngPitInit();
47     
48     return;
49 }
50
51
52 /******************************************************************************/