Compare commits

..

No commits in common. "master" and "1.0.5" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,5 @@
name=HamShield_KISS
version=1.0.6
version=1.0.5
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.
@ -8,4 +8,3 @@ category=Device Control
url=http://www.hamshield.com
architectures=*
includes=packet.h, SimpleFIFO.h, KISS.h
depends=HamShield, DDS

View File

@ -1,7 +1,7 @@
#include <Arduino.h>
#include "SimpleFIFO.h"
#include "packet.h"
#include <DDS.h>
#include "dds.h"
#include <util/atomic.h>
#define PHASE_BIT 8
@ -537,7 +537,7 @@ size_t AFSK::Packet::appendCallsign(const char *callsign, uint8_t ssid, bool fin
if(final) {
ssidField |= 0b01100001;
} else {
ssidField |= 0b01100000;
ssidField |= 0b11100000;
}
appendFCS(ssidField);
}