Astro/Starlight documentation covering hardware specs, pinout, schematics, GNSS protocol, LoRa frequencies, and getting started guides. Includes extracted datasheet images and Docker deployment.
1.4 KiB
1.4 KiB
Wireless Tracker Hardware Update Log
V1.0
Release Date: June 30, 2023
- First release
- Initial public sale
- Schematic diagram
- Datasheet
V1.1
Release Date: Late 2023
Changes:
- Fixed: Power loss issue affecting the GNSS module during LoRa operation
- Enhanced: Low-power functionality
- Added: Additional LDO to supply power to the UC6580 GNSS module independently
- Changed: GNSS control pin removed; GPIO 3 set to
HIGHenables GNSS power
Key Differences from V1.0:
| Feature | V1.0 | V1.1 |
|---|---|---|
| GNSS Power | Shared rail | Dedicated LDO |
| GNSS Control | N/A | GPIO3 |
| Power Isolation | Limited | Improved |
| Low Power Mode | Basic | Enhanced |
Documentation:
Hardware Version Detection
To determine your hardware version programmatically:
// V1.1 requires GPIO3 HIGH to enable GNSS
#define GNSS_CTRL_PIN 3
void setup() {
// For V1.1 hardware - enable GNSS power
pinMode(GNSS_CTRL_PIN, OUTPUT);
digitalWrite(GNSS_CTRL_PIN, HIGH);
}