// SPDX-License-Identifier: GPL-3.0-only #include // Prevent failures to compile on AVR #ifndef __SDCC #define __code #endif static const char __code BOARD[] = "76EC_BOARD=" xstr(__BOARD__); static const char __code VERSION[] = "76EC_VERSION=" xstr(__FIRMWARE_VERSION__); const char *board(void) { return &BOARD[11]; } const char *version(void) { return &VERSION[13]; }