rename stock_stopwatch -> fast_stopwatch
This commit is contained in:
@@ -64,7 +64,7 @@
|
||||
#include "ratemeter_face.h"
|
||||
#include "rpn_calculator_alt_face.h"
|
||||
#include "weeknumber_clock_face.h"
|
||||
#include "stock_stopwatch_face.h"
|
||||
#include "fast_stopwatch_face.h"
|
||||
#include "tachymeter_face.h"
|
||||
#include "nanosec_face.h"
|
||||
#include "finetune_face.h"
|
||||
|
||||
@@ -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!)
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user