4 Commits

Author SHA1 Message Date
Nigel Vander Houwen
0bcbbdb2e3 Fixed what I believe is a typo in SSID handling during packet creation. 2019-03-13 16:33:48 -07:00
Morgan Redfield
ba97bd4702 Update library.properties 2017-02-03 15:17:49 -08:00
morgan
5fc9e7abbd Merge branch 'master' of https://github.com/EnhancedRadioDevices/HamShield_KISS 2017-02-03 15:15:46 -08:00
Morgan Redfield
0689f95f74 added check for tx before parsing serial 2017-02-03 11:35:06 -08:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
name=HamShield_KISS
version=1.0.3
version=1.0.4
author=Morgan Redfield <morgan@enhancedradio.com>, Casey Halverson <casey@enhancedradio.com>
maintainer=Morgan Redfield <morgan@enhancedradio.com>
sentence=A library for use with HamShield by Enhanced Radio Devices.

View File

@@ -23,7 +23,7 @@ void KISS::loop() {
}
}
// Check if we have incoming data to turn into a packet
while(io->available()) {
while(currentlySending == false && io->available()) {
uint8_t c = (uint8_t)io->read();
if(c == KISS_FEND) {
if(inFrame && kissLen > 0) {

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);
}