source: asp3_tinet_ecnl_rx/trunk/asp3_dcre/target/gr_sakura_gcc/target_timer.cfg@ 337

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

ASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain;charset=UTF-8
File size: 884 bytes
Line 
1/*
2 * タイマドライバ(GR-SAKURA用)のコンフィギュレーションファイル
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.