Swap button assignments

They were flipped in the watch v1.1 design, since the are now on the
opposite side.
This commit is contained in:
2019-12-17 22:11:25 -08:00
parent 2a633fe748
commit 00c9910872

View File

@@ -46,7 +46,7 @@ static BSP::Schedule::LowPowerTaskScheduler<5> g_sched;
static BSP::SpiDriver g_spi(g_sched);
static BSP::DisplayDriver g_display(g_sched, g_spi);
static BSP::LptimPwm g_lptim_pwm(LPTIM1);
static BSP::ButtonManager g_btn_manager(g_sched, 0, 1, 2, Time::millis(1));
static BSP::ButtonManager g_btn_manager(g_sched, 2, 1, 0, Time::millis(1));
static ScreenManager g_screen_manager(g_sched, g_display, g_btn_manager);
static SetTimeScreen g_set_time_screen(g_display, g_screen_manager);