From d7ee7f97a4efc74c82776fa83f791dd935ad7a1e Mon Sep 17 00:00:00 2001 From: Furrtek Date: Fri, 15 Jun 2018 03:16:24 +0100 Subject: [PATCH 1/2] Ext clock detect bugfix attempt --- firmware/application/portapack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/application/portapack.cpp b/firmware/application/portapack.cpp index eaaef1137..61e549398 100644 --- a/firmware/application/portapack.cpp +++ b/firmware/application/portapack.cpp @@ -102,12 +102,12 @@ void poll_ext_clock() { auto clkin_status = clock_generator.clkin_status(); if (clkin_status != prev_clkin_status) { + prev_clkin_status = clkin_status; StatusRefreshMessage message { }; EventDispatcher::send_message(message); clock_manager.init(clkin_status); } - prev_clkin_status = clkin_status; } class Power { From 4d98491448964e4b9a599aa8ab1730dd8db9c76e Mon Sep 17 00:00:00 2001 From: NotPike Date: Tue, 21 Aug 2018 19:57:02 -0400 Subject: [PATCH 2/2] Update README.md (#197) Spelling. :D --- sdcard/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdcard/README.md b/sdcard/README.md index 807baad75..684807502 100644 --- a/sdcard/README.md +++ b/sdcard/README.md @@ -4,7 +4,7 @@ World_map.bin is required if you want to use the world map view in some apps. It Since Github doesn't allow uploading such large files, you must generate it yourself from the provided jpg file. -1. Make sur that `world_map.jpg` is in `/sdcard/ADSB`. +1. Make sure that `world_map.jpg` is in `/sdcard/ADSB`. 1. Go in `/firmware/tools`. 1. Run 'python adsb_map.py'. Give it some time. 1. `world_map.bin` should appear ! Leave it in the ADSB directory.