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
109 stars 28 forks source link

ax25.c compile error #82

Closed buttim closed 5 months ago

buttim commented 5 months ago

The last modification to the file src/codecs/ax25.c is broken. Line 92 has a missing open parentheses (and a useless final semicolon):

header->destination_ssid = (uint8_t) destination_ssid >= 'A' ? destination_ssid - 7 : destination_ssid);;

and should be (probably) corrected to:

header->destination_ssid = (uint8_t)(destination_ssid >= 'A' ? destination_ssid - 7 : destination_ssid);

mikaelnousiainen commented 5 months ago

@buttim Thanks for reporting this, should be fixed now!