source: azure_iot_hub/trunk/asp3_dcre/target/gr_citrus_gcc/target_timer.cfg@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/plain
File size: 884 bytes
Line 
1/*
2 * タイマドライバ(GR-CITRUS用)のコンフィギュレーションファイル
3 */
4
5#include "target_timer.h"
6
7ATT_INI({ TA_NULL, 0, target_timer_initialize });
8ATT_TER({ TA_NULL, 0, target_timer_terminate });
9DEF_INH(INHNO_TIMER0, { TA_NULL, target_lower_timer_handler });
10CFG_INT(INTNO_TIMER0, { INTATR_TIMER0, INTPRI_TIMER0 });
11DEF_INH(INHNO_TIMER1, { TA_NULL, target_upper_timer_handler });
12CFG_INT(INTNO_TIMER1, { INTATR_TIMER1, INTPRI_TIMER1 });
13
14/*
15 * オーバランハンドラ用タイマドライバ(RX630用)のコンフィギュレーションファイル
16 */
17#ifdef TOPPERS_SUPPORT_OVRHDR
18ATT_INI({ TA_NULL, 0, target_ovrtimer_initialize });
19ATT_TER({ TA_NULL, 0, target_ovrtimer_terminate });
20DEF_INH(INHNO_TIMER2, { TA_NULL, target_ovrtimer_handler });
21CFG_INT(INTNO_TIMER2, { INTATR_TIMER2, INTPRI_TIMER2 });
22#endif /* TOPPERS_SUPPORT_OVRHDR */
Note: See TracBrowser for help on using the repository browser.