Merge pull request #1 from EnhancedRadioDevices/ssid-typo

Fixed what I believe is a typo in SSID handling during packet creation.
This commit is contained in:
Morgan Redfield 2019-03-13 21:12:49 -07:00 committed by GitHub
commit d2502913d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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) { if(final) {
ssidField |= 0b01100001; ssidField |= 0b01100001;
} else { } else {
ssidField |= 0b11100000; ssidField |= 0b01100000;
} }
appendFCS(ssidField); appendFCS(ssidField);
} }