Compare commits
No commits in common. "master" and "1.0.5" have entirely different histories.
|
@ -1,5 +1,5 @@
|
||||||
name=HamShield_KISS
|
name=HamShield_KISS
|
||||||
version=1.0.6
|
version=1.0.5
|
||||||
author=Morgan Redfield <morgan@enhancedradio.com>, Casey Halverson <casey@enhancedradio.com>
|
author=Morgan Redfield <morgan@enhancedradio.com>, Casey Halverson <casey@enhancedradio.com>
|
||||||
maintainer=Morgan Redfield <morgan@enhancedradio.com>
|
maintainer=Morgan Redfield <morgan@enhancedradio.com>
|
||||||
sentence=A library for use with HamShield by Enhanced Radio Devices.
|
sentence=A library for use with HamShield by Enhanced Radio Devices.
|
||||||
|
@ -8,4 +8,3 @@ category=Device Control
|
||||||
url=http://www.hamshield.com
|
url=http://www.hamshield.com
|
||||||
architectures=*
|
architectures=*
|
||||||
includes=packet.h, SimpleFIFO.h, KISS.h
|
includes=packet.h, SimpleFIFO.h, KISS.h
|
||||||
depends=HamShield, DDS
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include "SimpleFIFO.h"
|
#include "SimpleFIFO.h"
|
||||||
#include "packet.h"
|
#include "packet.h"
|
||||||
#include <DDS.h>
|
#include "dds.h"
|
||||||
#include <util/atomic.h>
|
#include <util/atomic.h>
|
||||||
|
|
||||||
#define PHASE_BIT 8
|
#define PHASE_BIT 8
|
||||||
|
@ -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 |= 0b01100000;
|
ssidField |= 0b11100000;
|
||||||
}
|
}
|
||||||
appendFCS(ssidField);
|
appendFCS(ssidField);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue