Skip to main content

Posts

Showing posts from July, 2013

attiny24/44/84 タイマーベクタ名が他の avr と異なる

簡単に言うと iotnx4.h : TIM1_COMPA_vect, TIM1_COMPB_vect, TIM1_OVF_vect, TIM0_COMPA_vect, TIM0_COMPB_vect, TIM0_OVF_vect should be written with TIMER instead of TIM to reflect datasheet names. TIMER**** ---> TIM に綴りを変更で良い。 only TIMER1_CAPT_vect is consistent. レポートを見てもらったら早いが、 The interrupt vector names are derived directly from the Atmel part XML files. If you think they are in error,... 割り込みベクタ名は Atmel の XML file から直接持ってきておりそこが間違えている、とのこと. In the long run, we'd like to derive all our header file information automatically from the XML files (at least, initially). 今後、(2007時点だが)全てのヘッダを直接この XML から持って来れるようにする予定とのこと. attiny24/44/84 timer vector names are incorrect  http://savannah.nongnu.org/bugs/?18806