mikaelnousiainen / RS41ng

Custom firmware for Vaisala RS41 and Graw DFM-17 radiosondes with support for amateur radio use. Ideal for tracking high-altitude balloons. Supported modes include APRS, Horus 4FSK mode, CATS, morse code (CW) and additional digital modes like WSPR and FT8 via Si5351.
GNU General Public License v2.0
110 stars 28 forks source link

config.h should have APRSCALLSIGN in quotes ? #10

Closed zanco closed 2 years ago

zanco commented 2 years ago

Hi, I found out that #define APRS_CALLSIGN PE2BZ does not work, it actually requires "PE2BZ" which might be obvious for most of us, but took me some "debugging" (reading the error message)

mikaelnousiainen commented 2 years ago

@zanco The default is to use a single call sign for all modes, so re-defining CALLSIGN in the beginning of the config file should be enough. That value has quotes. This is why APRS_CALLSIGN simply defines it as the same as CALLSIGN, which is how C language works. If you do not have any special case in question where you need multiple call signs, please simply define CALLSIGN and leave APRS_CALLSIGN to the default value of CALLSIGN.

So the idea is to leave APRS_CALLSIGN as it is.

mikaelnousiainen commented 2 years ago

The main CALLSIGN value defaults to "MYCALL" where it should be hopefully obvious that it needs to be replaced :)