XMEGAタイマーオーバーフロー割り込みフラグを手動でクリアする必要がありますか?
ご存知かもしれませんが、Atmelはドライバーとサンプルを提供し、多かれ少なかれ定期的に更新されるソフトウェアフレームワーク(主にAtmel Studioの一部として)を提供します。 最近の更新では、割り込みコールバック関数のオーバーフロー割り込みフラグを手動でクリアすることが重要であることを明示的に指摘しています。 // * \subsection xmega_tc_qs_ovf_setup_code Example code // * // * Add a callback function that will be executed when the overflow interrupt // * trigger. // * \code static void my_callback(void) { // User code to execute when the overflow occurs here // THIS WAS ADDED IN …