Fixed what I believe is a typo in SSID handling during packet creation.

This commit is contained in:
Nigel Vander Houwen 2019-03-13 16:33:48 -07:00
parent ba97bd4702
commit 0bcbbdb2e3
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ size_t AFSK::Packet::appendCallsign(const char *callsign, uint8_t ssid, bool fin
if(final) {
ssidField |= 0b01100001;
} else {
ssidField |= 0b11100000;
ssidField |= 0b01100000;
}
appendFCS(ssidField);
}