From: Keith Packard Date: Sat, 26 Jul 2025 18:46:33 +0000 (-0700) Subject: altos: Fixup mosaic GPS test program X-Git-Tag: 1.9.22~1^2~6 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=0441efc92a2bc001ac1c4fe5696baba83edc8a37;p=fw%2Faltos altos: Fixup mosaic GPS test program Just some naming changes needed Signed-off-by: Keith Packard --- diff --git a/src/test/ao_gps_test_mosaic.c b/src/test/ao_gps_test_mosaic.c index cbc29d0e..54490948 100644 --- a/src/test/ao_gps_test_mosaic.c +++ b/src/test/ao_gps_test_mosaic.c @@ -176,7 +176,7 @@ ao_mosaic_putchar(char c) #define AO_SERIAL_SPEED_115200 3 static void -ao_gps_set_speed(uint8_t speed) +ao_mosaic_set_speed(uint8_t speed) { int fd = ao_gps_fd; struct termios termios; @@ -276,6 +276,6 @@ main (int argc, char **argv) exit (1); } ao_gps_file = fdopen(ao_gps_fd, "r"); - mosaic(); + ao_gps_mosaic(); return 0; }