DL9SAU-TTGO-T-Beam-LoRa-APRS/src
Thomas Osterried f88fe7b8cf Smaller fixes
- gps:
  - gps info on lcd: in sleep mode, "S:zzz" is now shown,
    instead of "S:sats/hdop"
    Lie with "GPS:" will show now fix or GPS age as usuual

- own beacon:
  If lora TX is off and no aprsis connection, we sent no beacon.
  This was a regression; at one digipeater qth there was a setup
  where an aprs digi software attached to kiss. The beacon
  via kiss is required.
  ->
  -  if (manBeacon && (lora_tx_enabled || aprsis_enabled)) {
  +  if (manBeacon && (lora_tx_enabled || aprsis_enabled || usb_serial_data_type == 0 || usb_serial_data_type & 2)) {

- Boot messages: if no AP is configured (-> empty SSID), message was
  Preferences AP  found with PW  in wifi.cfg and not stored again.
  -> Made it nicer

- More tests on poersaving mode.
  - With the bad GPS antenna of the T-Beam v1.2, it takes > 5 min to
    get a fix after repowering the chip.
  - The algorith of my last commit had too short awake times.
    I also test powering off the chip if I don't move. Still testing, it
    may not be perfect.

Signed-off-by: Thomas Osterried <dl9sau@darc.de>
2024-05-13 11:41:36 +02:00
..
TTGO_T-Beam_LoRa_APRS.ino Smaller fixes 2024-05-13 11:41:36 +02:00
preference_storage.cpp
taskGPS.cpp
taskTNC.cpp
taskWebServer.cpp
wifi_clients.cpp