From db5cbe95524dd8e70a05c2b087368cec304a7372 Mon Sep 17 00:00:00 2001 From: "jacob.eva" Date: Mon, 24 Feb 2025 12:05:45 +0000 Subject: [PATCH] Fix build on non-GPS --- Utilities.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Utilities.h b/Utilities.h index 81e0c44..738e265 100644 --- a/Utilities.h +++ b/Utilities.h @@ -1717,6 +1717,7 @@ void unlock_rom() { } void kiss_indicate_location() { + #if HAS_GPS char location[10]; int len; int32_t val; @@ -1741,6 +1742,7 @@ void kiss_indicate_location() { escaped_serial_write(val); serial_write(FEND); } + #endif } void log_debug(const char* msg) {