Power-on indicator: when the display doesn't stay lit, the green LED flashes for 100 ms every 3 s so a dark screen doesn't leave you wondering whether the radio is still on. It pauses while receiving, transmitting or muted. Docs (README, MANUAL, CHANGELOG) updated. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JCK7s3WnwRHZNtQLdyyWBu
13 lines
310 B
C
13 lines
310 B
C
/*
|
|
* FreeTRX firmware version (semantic versioning: MAJOR.MINOR.PATCH).
|
|
*/
|
|
#ifndef _FREETRX_VERSION_H_
|
|
#define _FREETRX_VERSION_H_
|
|
|
|
#define FREETRX_VERSION_MAJOR 0
|
|
#define FREETRX_VERSION_MINOR 13
|
|
#define FREETRX_VERSION_PATCH 0
|
|
|
|
#define FREETRX_VERSION "0.13.0"
|
|
|
|
#endif // _FREETRX_VERSION_H_
|