From 0732df19fa1d82161189ec31eb04c560377a7b11 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 6 Aug 2022 09:43:55 -0400 Subject: [PATCH] swap timers 0 and 1 --- cubesatsim/cubesatsim.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.h b/cubesatsim/cubesatsim.h index 659170da..0bcc8df3 100644 --- a/cubesatsim/cubesatsim.h +++ b/cubesatsim/cubesatsim.h @@ -302,8 +302,8 @@ int mode_count = 0; unsigned long pb_press_start; bool TimerHandler0(struct repeating_timer *t); -RPI_PICO_Timer ITimer0(0); -RPI_PICO_Timer ITimer1(1); +RPI_PICO_Timer ITimer0(1); +RPI_PICO_Timer ITimer1(0); bool timer0_on = false; char callsign[20];