Fix the green RX LED not returning after un-muting mid-QSO, plus the MANUAL.md user guide and the MkDocs documentation website from this cycle. Bump version to 0.5.0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
308 B
C
13 lines
308 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 5
|
|
#define FREETRX_VERSION_PATCH 0
|
|
|
|
#define FREETRX_VERSION "0.5.0"
|
|
|
|
#endif // _FREETRX_VERSION_H_
|