mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-04 21:07:32 -05:00
9 lines
234 B
C
9 lines
234 B
C
|
#pragma once
|
||
|
|
||
|
#include <avr/pgmspace.h>
|
||
|
|
||
|
/*
|
||
|
* VERSION_STRING is a PROGMEM string, so extract it before use, e.g.
|
||
|
* strncpy_P(char_buffer_out,VERSION_STRING,size_of_char_buffer_out);
|
||
|
*/
|
||
|
extern const char* const CALLSIGN_STRING;
|