]> git.earman.xyz Git - sensor-watch.git/commitdiff
new name for irq handlers
authorjoeycastillo <joeycastillo@utexas.edu>
Thu, 19 Sep 2024 01:28:55 +0000 (21:28 -0400)
committerjoeycastillo <joeycastillo@utexas.edu>
Thu, 19 Sep 2024 01:28:55 +0000 (21:28 -0400)
watch-library/hardware/watch/watch_tcc.c
watch-library/shared/watch/watch_tcc.h

index 39554f80932487fb35fb763d6cd0f56ecd7a9e70..efee7a98fe157671c894012f0616042b4eef1611 100644 (file)
@@ -132,8 +132,8 @@ void watch_buzzer_abort_sequence(void) {
     _tcc_write_RUNSTDBY(false);
 }
 
-void TC3_Handler(void) {
-    // interrupt handler vor TC3 (globally!)
+void irq_handler_tc3(void) {
+    // interrupt handler for TC3 (globally!)
     cb_watch_buzzer_seq();
     TC3->COUNT8.INTFLAG.reg |= TC_INTFLAG_OVF;
 }
index c70260e40f99260a8519423e4bf018cd6d6c2bc9..6f965b66fa8e5fac01062b732c54ccf565c83187 100644 (file)
@@ -188,7 +188,7 @@ void watch_buzzer_play_sequence(int8_t *note_sequence, void (*callback_on_end)(v
 void watch_buzzer_abort_sequence(void);
 
 #ifndef __EMSCRIPTEN__
-void TC3_Handler(void);
+void irq_handler_tc3(void);
 #endif
 
 /** @addtogroup led LED Control