rename stock_stopwatch -> fast_stopwatch

This commit is contained in:
joeycastillo
2024-09-29 13:27:35 -04:00
parent 78f23dc215
commit 32a49a5e11
9 changed files with 32 additions and 32 deletions

View File

@@ -34,11 +34,11 @@
* IMPORTANT: This watch face uses the same TC2 callback counter as the Stock Stopwatch
* watch-face. It works through calling a global handler function. The two watch-faces
* therefore can't coexist within the same firmware. If you want to compile this watch-face
* then you need to remove the line <../watch_faces/complication/stock_stopwatch_face.c \>
* then you need to remove the line <../watch_faces/complication/fast_stopwatch_face.c \>
* from the Makefile.
*/
// FROM stock_stopwatch_face.c ////////////////////////////////////////////////
// FROM fast_stopwatch_face.c ////////////////////////////////////////////////
// Copyright (c) 2022 Andreas Nebinger
#if __EMSCRIPTEN__
@@ -107,7 +107,7 @@ static void _dual_timer_cb_initialize() {
NVIC_EnableIRQ (TC2_IRQn);
}
// you need to take stock_stopwatch.c out of the Makefile or this will create a conflict
// you need to take fast_stopwatch.c out of the Makefile or this will create a conflict
// you have to choose between one of the stopwatches
void TC2_Handler(void) {
// interrupt handler for TC2 (globally!)

View File

@@ -63,7 +63,7 @@
* IMPORTANT: This watch face uses the same TC2 callback counter as the Stock Stopwatch
* watch-face. It works through calling a global handler function. The two watch-faces
* therefore can't coexist within the same firmware. If you want to compile this watch-face
* then you need to remove the line <../watch_faces/complication/stock_stopwatch_face.c \>
* then you need to remove the line <../watch_faces/complication/fast_stopwatch_face.c \>
* from the Makefile.
*/

View File

@@ -34,7 +34,7 @@
* when the timer is stopped resets it.
*
* This face does not count sub-seconds.
* See also: "stock_stopwatch_face.h"
* See also: "fast_stopwatch_face.h"
*/
#include "movement.h"