2022-01-22 13:48:36 -07:00
|
|
|
// MIT License
|
|
|
|
//
|
|
|
|
// Copyright (c) 2022 Mark Qvist - unsigned.io/rnode
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
|
|
|
|
2018-12-01 11:31:51 -07:00
|
|
|
#include <Arduino.h>
|
2018-04-05 10:10:42 -06:00
|
|
|
#include <SPI.h>
|
2019-01-01 07:52:48 -07:00
|
|
|
#include "Utilities.h"
|
2018-04-05 10:10:42 -06:00
|
|
|
|
2020-05-28 14:18:19 -06:00
|
|
|
FIFOBuffer serialFIFO;
|
2020-06-01 04:43:59 -06:00
|
|
|
uint8_t serialBuffer[CONFIG_UART_BUFFER_SIZE+1];
|
2020-05-28 14:18:19 -06:00
|
|
|
|
|
|
|
FIFOBuffer16 packet_starts;
|
2022-01-09 15:45:40 -07:00
|
|
|
uint16_t packet_starts_buf[CONFIG_QUEUE_MAX_LENGTH+1];
|
2020-05-28 14:18:19 -06:00
|
|
|
|
|
|
|
FIFOBuffer16 packet_lengths;
|
2022-01-09 15:45:40 -07:00
|
|
|
uint16_t packet_lengths_buf[CONFIG_QUEUE_MAX_LENGTH+1];
|
2020-05-28 14:18:19 -06:00
|
|
|
|
|
|
|
uint8_t packet_queue[CONFIG_QUEUE_SIZE];
|
|
|
|
|
|
|
|
volatile uint8_t queue_height = 0;
|
2022-01-09 15:45:40 -07:00
|
|
|
volatile uint16_t queued_bytes = 0;
|
|
|
|
volatile uint16_t queue_cursor = 0;
|
|
|
|
volatile uint16_t current_packet_start = 0;
|
2020-05-29 06:58:10 -06:00
|
|
|
volatile bool serial_buffering = false;
|
2022-10-30 07:52:22 -06:00
|
|
|
#if HAS_BLUETOOTH
|
|
|
|
bool bt_init_ran = false;
|
|
|
|
#endif
|
2020-05-29 06:58:10 -06:00
|
|
|
|
|
|
|
char sbuf[128];
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2022-01-10 14:14:30 -07:00
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
|
|
|
bool packet_ready = false;
|
|
|
|
#endif
|
|
|
|
|
2018-04-05 10:10:42 -06:00
|
|
|
void setup() {
|
2022-01-09 15:40:30 -07:00
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
2022-01-09 16:05:25 -07:00
|
|
|
delay(500);
|
2022-01-09 15:40:30 -07:00
|
|
|
EEPROM.begin(EEPROM_SIZE);
|
2022-01-10 18:54:32 -07:00
|
|
|
Serial.setRxBufferSize(CONFIG_UART_BUFFER_SIZE);
|
2022-01-09 15:40:30 -07:00
|
|
|
#endif
|
|
|
|
|
2018-04-05 10:10:42 -06:00
|
|
|
// Seed the PRNG
|
|
|
|
randomSeed(analogRead(0));
|
|
|
|
|
|
|
|
// Initialise serial communication
|
2020-05-28 14:18:19 -06:00
|
|
|
memset(serialBuffer, 0, sizeof(serialBuffer));
|
2020-06-01 04:43:59 -06:00
|
|
|
fifo_init(&serialFIFO, serialBuffer, CONFIG_UART_BUFFER_SIZE);
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2018-04-05 10:10:42 -06:00
|
|
|
Serial.begin(serial_baudrate);
|
|
|
|
while (!Serial);
|
|
|
|
|
2020-05-29 06:58:10 -06:00
|
|
|
serial_interrupt_init();
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2018-04-05 10:10:42 -06:00
|
|
|
// Configure input and output pins
|
|
|
|
pinMode(pin_led_rx, OUTPUT);
|
|
|
|
pinMode(pin_led_tx, OUTPUT);
|
|
|
|
|
2018-06-27 02:22:44 -06:00
|
|
|
// Initialise buffers
|
2018-04-05 10:10:42 -06:00
|
|
|
memset(pbuf, 0, sizeof(pbuf));
|
|
|
|
memset(cbuf, 0, sizeof(cbuf));
|
2018-06-27 02:22:44 -06:00
|
|
|
|
2020-05-28 14:18:19 -06:00
|
|
|
memset(packet_queue, 0, sizeof(packet_queue));
|
|
|
|
|
2020-06-01 04:43:59 -06:00
|
|
|
memset(packet_starts_buf, 0, sizeof(packet_starts_buf));
|
|
|
|
fifo16_init(&packet_starts, packet_starts_buf, CONFIG_QUEUE_MAX_LENGTH);
|
|
|
|
|
|
|
|
memset(packet_lengths_buf, 0, sizeof(packet_starts_buf));
|
|
|
|
fifo16_init(&packet_lengths, packet_lengths_buf, CONFIG_QUEUE_MAX_LENGTH);
|
2018-04-05 10:10:42 -06:00
|
|
|
|
|
|
|
// Set chip select, reset and interrupt
|
|
|
|
// pins for the LoRa module
|
|
|
|
LoRa.setPins(pin_cs, pin_reset, pin_dio);
|
2018-06-20 00:45:11 -06:00
|
|
|
|
2022-01-21 12:43:29 -07:00
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
2022-10-28 16:53:39 -06:00
|
|
|
#if HAS_PMU == true
|
|
|
|
pmu_ready = init_pmu();
|
2022-01-21 12:43:29 -07:00
|
|
|
#endif
|
|
|
|
|
2022-01-10 18:54:32 -07:00
|
|
|
kiss_indicate_reset();
|
2022-01-09 15:40:30 -07:00
|
|
|
#endif
|
|
|
|
|
2022-10-28 16:53:39 -06:00
|
|
|
#if HAS_DISPLAY
|
|
|
|
disp_ready = display_init();
|
|
|
|
#endif
|
|
|
|
|
2022-10-29 08:44:49 -06:00
|
|
|
// Validate board health, EEPROM and config
|
|
|
|
validateStatus();
|
2018-04-05 10:10:42 -06:00
|
|
|
}
|
|
|
|
|
2021-03-12 10:48:50 -07:00
|
|
|
void lora_receive() {
|
|
|
|
if (!implicit) {
|
|
|
|
LoRa.receive();
|
|
|
|
} else {
|
|
|
|
LoRa.receive(implicit_l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-10 14:14:30 -07:00
|
|
|
inline void kiss_write_packet() {
|
2022-10-30 11:35:53 -06:00
|
|
|
serial_write(FEND);
|
|
|
|
serial_write(CMD_DATA);
|
2022-01-14 13:12:33 -07:00
|
|
|
for (uint16_t i = 0; i < read_len; i++) {
|
2022-01-10 14:14:30 -07:00
|
|
|
uint8_t byte = pbuf[i];
|
2022-10-30 11:35:53 -06:00
|
|
|
if (byte == FEND) { serial_write(FESC); byte = TFEND; }
|
|
|
|
if (byte == FESC) { serial_write(FESC); byte = TFESC; }
|
|
|
|
serial_write(byte);
|
2018-04-05 10:10:42 -06:00
|
|
|
}
|
2022-10-30 11:35:53 -06:00
|
|
|
serial_write(FEND);
|
2022-01-10 14:14:30 -07:00
|
|
|
read_len = 0;
|
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
|
|
|
packet_ready = false;
|
|
|
|
#endif
|
2018-04-05 10:10:42 -06:00
|
|
|
}
|
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
inline void getPacketData(uint16_t len) {
|
2022-01-10 18:54:32 -07:00
|
|
|
while (len-- && read_len < MTU) {
|
|
|
|
pbuf[read_len++] = LoRa.read();
|
|
|
|
}
|
|
|
|
}
|
2022-01-10 14:14:30 -07:00
|
|
|
|
2022-01-10 18:54:32 -07:00
|
|
|
void ISR_VECT receive_callback(int packet_size) {
|
2022-01-14 13:12:33 -07:00
|
|
|
if (!promisc) {
|
|
|
|
// The standard operating mode allows large
|
|
|
|
// packets with a payload up to 500 bytes,
|
|
|
|
// by combining two raw LoRa packets.
|
|
|
|
// We read the 1-byte header and extract
|
|
|
|
// packet sequence number and split flags
|
|
|
|
uint8_t header = LoRa.read(); packet_size--;
|
|
|
|
uint8_t sequence = packetSequence(header);
|
|
|
|
bool ready = false;
|
|
|
|
|
|
|
|
if (isSplitPacket(header) && seq == SEQ_UNSET) {
|
|
|
|
// This is the first part of a split
|
|
|
|
// packet, so we set the seq variable
|
|
|
|
// and add the data to the buffer
|
|
|
|
read_len = 0;
|
|
|
|
seq = sequence;
|
2022-01-10 14:14:30 -07:00
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
#if MCU_VARIANT != MCU_ESP32
|
|
|
|
last_rssi = LoRa.packetRssi();
|
|
|
|
last_snr_raw = LoRa.packetSnrRaw();
|
|
|
|
#endif
|
2022-01-10 18:54:32 -07:00
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
getPacketData(packet_size);
|
2022-01-10 18:54:32 -07:00
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
} else if (isSplitPacket(header) && seq == sequence) {
|
|
|
|
// This is the second part of a split
|
|
|
|
// packet, so we add it to the buffer
|
|
|
|
// and set the ready flag.
|
|
|
|
|
|
|
|
#if MCU_VARIANT != MCU_ESP32
|
|
|
|
last_rssi = (last_rssi+LoRa.packetRssi())/2;
|
|
|
|
last_snr_raw = (last_snr_raw+LoRa.packetSnrRaw())/2;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
getPacketData(packet_size);
|
|
|
|
seq = SEQ_UNSET;
|
|
|
|
ready = true;
|
|
|
|
|
|
|
|
} else if (isSplitPacket(header) && seq != sequence) {
|
|
|
|
// This split packet does not carry the
|
|
|
|
// same sequence id, so we must assume
|
|
|
|
// that we are seeing the first part of
|
|
|
|
// a new split packet.
|
|
|
|
read_len = 0;
|
|
|
|
seq = sequence;
|
2022-01-10 18:54:32 -07:00
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
#if MCU_VARIANT != MCU_ESP32
|
|
|
|
last_rssi = LoRa.packetRssi();
|
|
|
|
last_snr_raw = LoRa.packetSnrRaw();
|
|
|
|
#endif
|
2022-01-10 18:54:32 -07:00
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
getPacketData(packet_size);
|
2022-01-10 18:54:32 -07:00
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
} else if (!isSplitPacket(header)) {
|
|
|
|
// This is not a split packet, so we
|
|
|
|
// just read it and set the ready
|
|
|
|
// flag to true.
|
2022-01-10 18:54:32 -07:00
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
if (seq != SEQ_UNSET) {
|
|
|
|
// If we already had part of a split
|
|
|
|
// packet in the buffer, we clear it.
|
|
|
|
read_len = 0;
|
|
|
|
seq = SEQ_UNSET;
|
2018-06-27 03:42:48 -06:00
|
|
|
}
|
|
|
|
|
2022-01-10 14:14:30 -07:00
|
|
|
#if MCU_VARIANT != MCU_ESP32
|
|
|
|
last_rssi = LoRa.packetRssi();
|
|
|
|
last_snr_raw = LoRa.packetSnrRaw();
|
2022-01-14 13:12:33 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
getPacketData(packet_size);
|
|
|
|
ready = true;
|
|
|
|
}
|
2018-04-05 10:10:42 -06:00
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
if (ready) {
|
|
|
|
#if MCU_VARIANT != MCU_ESP32
|
2022-01-10 14:14:30 -07:00
|
|
|
// We first signal the RSSI of the
|
|
|
|
// recieved packet to the host.
|
|
|
|
kiss_indicate_stat_rssi();
|
|
|
|
kiss_indicate_stat_snr();
|
|
|
|
|
|
|
|
// And then write the entire packet
|
|
|
|
kiss_write_packet();
|
|
|
|
#else
|
|
|
|
packet_ready = true;
|
|
|
|
#endif
|
2022-01-14 13:12:33 -07:00
|
|
|
}
|
|
|
|
} else {
|
2022-01-14 13:41:10 -07:00
|
|
|
// In promiscuous mode, raw packets are
|
|
|
|
// output directly to the host
|
|
|
|
read_len = 0;
|
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
#if MCU_VARIANT != MCU_ESP32
|
|
|
|
last_rssi = LoRa.packetRssi();
|
|
|
|
last_snr_raw = LoRa.packetSnrRaw();
|
|
|
|
getPacketData(packet_size);
|
|
|
|
|
|
|
|
// We first signal the RSSI of the
|
|
|
|
// recieved packet to the host.
|
|
|
|
kiss_indicate_stat_rssi();
|
|
|
|
kiss_indicate_stat_snr();
|
|
|
|
|
|
|
|
// And then write the entire packet
|
|
|
|
kiss_write_packet();
|
|
|
|
|
|
|
|
#else
|
|
|
|
getPacketData(packet_size);
|
|
|
|
packet_ready = true;
|
2022-01-10 14:14:30 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool startRadio() {
|
|
|
|
update_radio_lock();
|
|
|
|
if (!radio_online) {
|
|
|
|
if (!radio_locked && hw_ready) {
|
|
|
|
if (!LoRa.begin(lora_freq)) {
|
|
|
|
// The radio could not be started.
|
|
|
|
// Indicate this failure over both the
|
|
|
|
// serial port and with the onboard LEDs
|
2022-10-29 08:44:49 -06:00
|
|
|
radio_error = true;
|
2022-01-10 14:14:30 -07:00
|
|
|
kiss_indicate_error(ERROR_INITRADIO);
|
|
|
|
led_indicate_error(0);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
radio_online = true;
|
|
|
|
|
|
|
|
setTXPower();
|
|
|
|
setBandwidth();
|
|
|
|
setSpreadingFactor();
|
|
|
|
setCodingRate();
|
|
|
|
getFrequency();
|
|
|
|
|
|
|
|
LoRa.enableCrc();
|
|
|
|
|
|
|
|
LoRa.onReceive(receive_callback);
|
|
|
|
|
|
|
|
lora_receive();
|
|
|
|
|
|
|
|
// Flash an info pattern to indicate
|
|
|
|
// that the radio is now on
|
2022-01-22 13:43:52 -07:00
|
|
|
kiss_indicate_radiostate();
|
2022-01-10 14:14:30 -07:00
|
|
|
led_indicate_info(3);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// Flash a warning pattern to indicate
|
|
|
|
// that the radio was locked, and thus
|
|
|
|
// not started
|
2022-01-22 13:43:52 -07:00
|
|
|
radio_online = false;
|
|
|
|
kiss_indicate_radiostate();
|
2022-01-10 14:14:30 -07:00
|
|
|
led_indicate_warning(3);
|
|
|
|
return false;
|
2018-04-05 10:10:42 -06:00
|
|
|
}
|
2022-01-10 14:14:30 -07:00
|
|
|
} else {
|
|
|
|
// If radio is already on, we silently
|
|
|
|
// ignore the request.
|
2022-01-22 13:43:52 -07:00
|
|
|
kiss_indicate_radiostate();
|
2022-01-10 14:14:30 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void stopRadio() {
|
|
|
|
LoRa.end();
|
|
|
|
radio_online = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void update_radio_lock() {
|
|
|
|
if (lora_freq != 0 && lora_bw != 0 && lora_txp != 0xFF && lora_sf != 0) {
|
|
|
|
radio_locked = false;
|
|
|
|
} else {
|
|
|
|
radio_locked = true;
|
2018-04-05 10:10:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-27 02:22:44 -06:00
|
|
|
bool queueFull() {
|
2020-05-29 06:58:10 -06:00
|
|
|
return (queue_height >= CONFIG_QUEUE_MAX_LENGTH || queued_bytes >= CONFIG_QUEUE_SIZE);
|
2018-06-27 02:22:44 -06:00
|
|
|
}
|
|
|
|
|
2020-05-28 14:18:19 -06:00
|
|
|
volatile bool queue_flushing = false;
|
|
|
|
void flushQueue(void) {
|
|
|
|
if (!queue_flushing) {
|
|
|
|
queue_flushing = true;
|
2018-06-27 02:22:44 -06:00
|
|
|
|
2022-01-09 15:45:40 -07:00
|
|
|
uint16_t processed = 0;
|
2022-01-09 15:40:30 -07:00
|
|
|
|
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
|
|
|
while (!fifo16_isempty(&packet_starts)) {
|
|
|
|
#else
|
2020-05-29 06:58:10 -06:00
|
|
|
while (!fifo16_isempty_locked(&packet_starts)) {
|
2022-01-09 15:40:30 -07:00
|
|
|
#endif
|
|
|
|
|
2022-01-09 15:45:40 -07:00
|
|
|
uint16_t start = fifo16_pop(&packet_starts);
|
|
|
|
uint16_t length = fifo16_pop(&packet_lengths);
|
2018-06-27 02:22:44 -06:00
|
|
|
|
2020-05-29 06:58:10 -06:00
|
|
|
if (length >= MIN_L && length <= MTU) {
|
2022-01-09 15:45:40 -07:00
|
|
|
for (uint16_t i = 0; i < length; i++) {
|
|
|
|
uint16_t pos = (start+i)%CONFIG_QUEUE_SIZE;
|
2020-05-28 14:18:19 -06:00
|
|
|
tbuf[i] = packet_queue[pos];
|
|
|
|
}
|
2018-06-27 02:22:44 -06:00
|
|
|
|
2020-05-28 14:18:19 -06:00
|
|
|
transmit(length);
|
|
|
|
processed++;
|
|
|
|
}
|
|
|
|
}
|
2018-06-27 02:22:44 -06:00
|
|
|
}
|
2020-05-28 14:18:19 -06:00
|
|
|
|
|
|
|
queue_height = 0;
|
|
|
|
queued_bytes = 0;
|
|
|
|
queue_flushing = false;
|
2018-06-27 02:22:44 -06:00
|
|
|
}
|
|
|
|
|
2022-01-09 15:45:40 -07:00
|
|
|
void transmit(uint16_t size) {
|
2018-04-05 10:10:42 -06:00
|
|
|
if (radio_online) {
|
2018-06-27 03:42:48 -06:00
|
|
|
if (!promisc) {
|
|
|
|
led_tx_on();
|
2022-01-09 15:45:40 -07:00
|
|
|
uint16_t written = 0;
|
2018-06-27 03:42:48 -06:00
|
|
|
uint8_t header = random(256) & 0xF0;
|
2018-04-05 10:10:42 -06:00
|
|
|
|
2018-06-27 03:42:48 -06:00
|
|
|
if (size > SINGLE_MTU - HEADER_L) {
|
|
|
|
header = header | FLAG_SPLIT;
|
|
|
|
}
|
2018-04-05 10:10:42 -06:00
|
|
|
|
2018-06-27 03:42:48 -06:00
|
|
|
LoRa.beginPacket();
|
|
|
|
LoRa.write(header); written++;
|
2018-04-05 10:10:42 -06:00
|
|
|
|
2022-01-14 02:51:40 -07:00
|
|
|
for (uint16_t i=0; i < size; i++) {
|
2020-05-28 14:18:19 -06:00
|
|
|
LoRa.write(tbuf[i]);
|
2018-06-27 02:22:44 -06:00
|
|
|
|
2018-06-27 03:42:48 -06:00
|
|
|
written++;
|
2018-04-05 10:10:42 -06:00
|
|
|
|
2018-06-27 03:42:48 -06:00
|
|
|
if (written == 255) {
|
|
|
|
LoRa.endPacket();
|
|
|
|
LoRa.beginPacket();
|
|
|
|
LoRa.write(header);
|
|
|
|
written = 1;
|
|
|
|
}
|
2018-04-05 10:10:42 -06:00
|
|
|
}
|
|
|
|
|
2018-06-27 03:42:48 -06:00
|
|
|
LoRa.endPacket();
|
|
|
|
led_tx_off();
|
|
|
|
|
2021-03-12 10:48:50 -07:00
|
|
|
lora_receive();
|
2018-06-27 03:42:48 -06:00
|
|
|
} else {
|
|
|
|
// In promiscuous mode, we only send out
|
|
|
|
// plain raw LoRa packets with a maximum
|
|
|
|
// payload of 255 bytes
|
|
|
|
led_tx_on();
|
2022-01-09 15:45:40 -07:00
|
|
|
uint16_t written = 0;
|
2018-06-27 03:42:48 -06:00
|
|
|
|
|
|
|
// Cap packets at 255 bytes
|
|
|
|
if (size > SINGLE_MTU) {
|
|
|
|
size = SINGLE_MTU;
|
|
|
|
}
|
2018-04-26 02:34:39 -06:00
|
|
|
|
2021-03-12 10:48:50 -07:00
|
|
|
// If implicit header mode has been set,
|
|
|
|
// set packet length to payload data length
|
|
|
|
if (!implicit) {
|
|
|
|
LoRa.beginPacket();
|
|
|
|
} else {
|
|
|
|
LoRa.beginPacket(size);
|
|
|
|
}
|
|
|
|
|
2022-01-14 02:51:40 -07:00
|
|
|
for (uint16_t i=0; i < size; i++) {
|
2020-05-28 14:18:19 -06:00
|
|
|
LoRa.write(tbuf[i]);
|
2018-06-27 03:42:48 -06:00
|
|
|
|
|
|
|
written++;
|
|
|
|
}
|
|
|
|
LoRa.endPacket();
|
|
|
|
led_tx_off();
|
2018-04-26 02:34:39 -06:00
|
|
|
|
2021-03-12 10:48:50 -07:00
|
|
|
lora_receive();
|
2018-06-27 03:42:48 -06:00
|
|
|
}
|
2018-04-05 10:10:42 -06:00
|
|
|
} else {
|
|
|
|
kiss_indicate_error(ERROR_TXFAILED);
|
|
|
|
led_indicate_error(5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void serialCallback(uint8_t sbyte) {
|
|
|
|
if (IN_FRAME && sbyte == FEND && command == CMD_DATA) {
|
|
|
|
IN_FRAME = false;
|
2018-06-27 02:22:44 -06:00
|
|
|
|
2020-05-29 06:58:10 -06:00
|
|
|
if (!fifo16_isfull(&packet_starts) && queued_bytes < CONFIG_QUEUE_SIZE) {
|
2022-01-09 15:45:40 -07:00
|
|
|
uint16_t s = current_packet_start;
|
2022-01-14 02:51:40 -07:00
|
|
|
int16_t e = queue_cursor-1; if (e == -1) e = CONFIG_QUEUE_SIZE-1;
|
2022-01-09 15:45:40 -07:00
|
|
|
uint16_t l;
|
2020-05-28 14:18:19 -06:00
|
|
|
|
|
|
|
if (s != e) {
|
|
|
|
l = (s < e) ? e - s + 1 : CONFIG_QUEUE_SIZE - s + e + 1;
|
|
|
|
} else {
|
|
|
|
l = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l >= MIN_L) {
|
|
|
|
queue_height++;
|
|
|
|
|
2020-05-29 06:58:10 -06:00
|
|
|
fifo16_push(&packet_starts, s);
|
|
|
|
fifo16_push(&packet_lengths, l);
|
2020-05-28 14:18:19 -06:00
|
|
|
|
|
|
|
current_packet_start = queue_cursor;
|
|
|
|
}
|
2020-05-29 06:58:10 -06:00
|
|
|
|
2018-06-27 02:22:44 -06:00
|
|
|
}
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2018-04-05 10:10:42 -06:00
|
|
|
} else if (sbyte == FEND) {
|
|
|
|
IN_FRAME = true;
|
|
|
|
command = CMD_UNKNOWN;
|
|
|
|
frame_len = 0;
|
|
|
|
} else if (IN_FRAME && frame_len < MTU) {
|
|
|
|
// Have a look at the command byte first
|
|
|
|
if (frame_len == 0 && command == CMD_UNKNOWN) {
|
|
|
|
command = sbyte;
|
|
|
|
} else if (command == CMD_DATA) {
|
2022-10-30 11:35:53 -06:00
|
|
|
if (bt_state != BT_STATE_CONNECTED) cable_state = CABLE_STATE_CONNECTED;
|
2018-04-05 10:10:42 -06:00
|
|
|
if (sbyte == FESC) {
|
|
|
|
ESCAPE = true;
|
|
|
|
} else {
|
|
|
|
if (ESCAPE) {
|
|
|
|
if (sbyte == TFEND) sbyte = FEND;
|
|
|
|
if (sbyte == TFESC) sbyte = FESC;
|
|
|
|
ESCAPE = false;
|
|
|
|
}
|
2020-05-28 14:18:19 -06:00
|
|
|
if (queue_height < CONFIG_QUEUE_MAX_LENGTH && queued_bytes < CONFIG_QUEUE_SIZE) {
|
|
|
|
queued_bytes++;
|
|
|
|
packet_queue[queue_cursor++] = sbyte;
|
|
|
|
if (queue_cursor == CONFIG_QUEUE_SIZE) queue_cursor = 0;
|
|
|
|
}
|
2018-04-05 10:10:42 -06:00
|
|
|
}
|
|
|
|
} else if (command == CMD_FREQUENCY) {
|
|
|
|
if (sbyte == FESC) {
|
|
|
|
ESCAPE = true;
|
|
|
|
} else {
|
|
|
|
if (ESCAPE) {
|
|
|
|
if (sbyte == TFEND) sbyte = FEND;
|
|
|
|
if (sbyte == TFESC) sbyte = FESC;
|
|
|
|
ESCAPE = false;
|
|
|
|
}
|
|
|
|
cbuf[frame_len++] = sbyte;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frame_len == 4) {
|
|
|
|
uint32_t freq = (uint32_t)cbuf[0] << 24 | (uint32_t)cbuf[1] << 16 | (uint32_t)cbuf[2] << 8 | (uint32_t)cbuf[3];
|
|
|
|
|
|
|
|
if (freq == 0) {
|
|
|
|
kiss_indicate_frequency();
|
|
|
|
} else {
|
|
|
|
lora_freq = freq;
|
2018-06-20 09:45:22 -06:00
|
|
|
if (op_mode == MODE_HOST) setFrequency();
|
2018-04-05 10:10:42 -06:00
|
|
|
kiss_indicate_frequency();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (command == CMD_BANDWIDTH) {
|
|
|
|
if (sbyte == FESC) {
|
|
|
|
ESCAPE = true;
|
|
|
|
} else {
|
|
|
|
if (ESCAPE) {
|
|
|
|
if (sbyte == TFEND) sbyte = FEND;
|
|
|
|
if (sbyte == TFESC) sbyte = FESC;
|
|
|
|
ESCAPE = false;
|
|
|
|
}
|
|
|
|
cbuf[frame_len++] = sbyte;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frame_len == 4) {
|
|
|
|
uint32_t bw = (uint32_t)cbuf[0] << 24 | (uint32_t)cbuf[1] << 16 | (uint32_t)cbuf[2] << 8 | (uint32_t)cbuf[3];
|
|
|
|
|
|
|
|
if (bw == 0) {
|
|
|
|
kiss_indicate_bandwidth();
|
|
|
|
} else {
|
|
|
|
lora_bw = bw;
|
2018-06-20 09:45:22 -06:00
|
|
|
if (op_mode == MODE_HOST) setBandwidth();
|
2018-04-05 10:10:42 -06:00
|
|
|
kiss_indicate_bandwidth();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (command == CMD_TXPOWER) {
|
|
|
|
if (sbyte == 0xFF) {
|
|
|
|
kiss_indicate_txpower();
|
|
|
|
} else {
|
|
|
|
int txp = sbyte;
|
|
|
|
if (txp > 17) txp = 17;
|
|
|
|
|
|
|
|
lora_txp = txp;
|
2018-06-20 09:45:22 -06:00
|
|
|
if (op_mode == MODE_HOST) setTXPower();
|
2018-04-05 10:10:42 -06:00
|
|
|
kiss_indicate_txpower();
|
|
|
|
}
|
|
|
|
} else if (command == CMD_SF) {
|
|
|
|
if (sbyte == 0xFF) {
|
|
|
|
kiss_indicate_spreadingfactor();
|
|
|
|
} else {
|
|
|
|
int sf = sbyte;
|
2018-06-30 04:10:14 -06:00
|
|
|
if (sf < 6) sf = 6;
|
2018-04-05 10:10:42 -06:00
|
|
|
if (sf > 12) sf = 12;
|
|
|
|
|
|
|
|
lora_sf = sf;
|
2018-06-20 09:45:22 -06:00
|
|
|
if (op_mode == MODE_HOST) setSpreadingFactor();
|
2018-04-05 10:10:42 -06:00
|
|
|
kiss_indicate_spreadingfactor();
|
|
|
|
}
|
2018-06-20 00:45:11 -06:00
|
|
|
} else if (command == CMD_CR) {
|
|
|
|
if (sbyte == 0xFF) {
|
|
|
|
kiss_indicate_codingrate();
|
|
|
|
} else {
|
|
|
|
int cr = sbyte;
|
|
|
|
if (cr < 5) cr = 5;
|
|
|
|
if (cr > 8) cr = 8;
|
|
|
|
|
|
|
|
lora_cr = cr;
|
2018-06-20 09:45:22 -06:00
|
|
|
if (op_mode == MODE_HOST) setCodingRate();
|
2018-06-20 00:45:11 -06:00
|
|
|
kiss_indicate_codingrate();
|
|
|
|
}
|
2021-03-12 10:48:50 -07:00
|
|
|
} else if (command == CMD_IMPLICIT) {
|
|
|
|
set_implicit_length(sbyte);
|
|
|
|
kiss_indicate_implicit_length();
|
2022-10-29 08:44:49 -06:00
|
|
|
} else if (command == CMD_LEAVE) {
|
|
|
|
if (sbyte == 0xFF) {
|
2022-10-29 09:34:08 -06:00
|
|
|
cable_state = CABLE_STATE_DISCONNECTED;
|
|
|
|
current_rssi = -292;
|
|
|
|
last_rssi = -292;
|
|
|
|
last_rssi_raw = 0x00;
|
|
|
|
last_snr_raw = 0x80;
|
2022-10-29 08:44:49 -06:00
|
|
|
}
|
2018-04-05 10:10:42 -06:00
|
|
|
} else if (command == CMD_RADIO_STATE) {
|
2022-10-30 11:35:53 -06:00
|
|
|
if (bt_state != BT_STATE_CONNECTED) cable_state = CABLE_STATE_CONNECTED;
|
2018-04-05 10:10:42 -06:00
|
|
|
if (sbyte == 0xFF) {
|
|
|
|
kiss_indicate_radiostate();
|
|
|
|
} else if (sbyte == 0x00) {
|
|
|
|
stopRadio();
|
|
|
|
kiss_indicate_radiostate();
|
|
|
|
} else if (sbyte == 0x01) {
|
|
|
|
startRadio();
|
|
|
|
kiss_indicate_radiostate();
|
|
|
|
}
|
|
|
|
} else if (command == CMD_STAT_RX) {
|
|
|
|
kiss_indicate_stat_rx();
|
|
|
|
} else if (command == CMD_STAT_TX) {
|
|
|
|
kiss_indicate_stat_tx();
|
|
|
|
} else if (command == CMD_STAT_RSSI) {
|
|
|
|
kiss_indicate_stat_rssi();
|
|
|
|
} else if (command == CMD_RADIO_LOCK) {
|
|
|
|
update_radio_lock();
|
|
|
|
kiss_indicate_radio_lock();
|
|
|
|
} else if (command == CMD_BLINK) {
|
|
|
|
led_indicate_info(sbyte);
|
|
|
|
} else if (command == CMD_RANDOM) {
|
|
|
|
kiss_indicate_random(getRandom());
|
2018-06-20 00:45:11 -06:00
|
|
|
} else if (command == CMD_DETECT) {
|
|
|
|
if (sbyte == DETECT_REQ) {
|
2022-10-30 11:35:53 -06:00
|
|
|
if (bt_state != BT_STATE_CONNECTED) cable_state = CABLE_STATE_CONNECTED;
|
2018-06-20 00:45:11 -06:00
|
|
|
kiss_indicate_detect();
|
|
|
|
}
|
2018-06-27 03:42:48 -06:00
|
|
|
} else if (command == CMD_PROMISC) {
|
|
|
|
if (sbyte == 0x01) {
|
|
|
|
promisc_enable();
|
|
|
|
} else if (sbyte == 0x00) {
|
|
|
|
promisc_disable();
|
|
|
|
}
|
|
|
|
kiss_indicate_promisc();
|
2020-05-20 08:16:04 -06:00
|
|
|
} else if (command == CMD_READY) {
|
|
|
|
if (!queueFull()) {
|
|
|
|
kiss_indicate_ready();
|
|
|
|
} else {
|
|
|
|
kiss_indicate_not_ready();
|
|
|
|
}
|
2018-06-20 00:45:11 -06:00
|
|
|
} else if (command == CMD_UNLOCK_ROM) {
|
|
|
|
if (sbyte == ROM_UNLOCK_BYTE) {
|
|
|
|
unlock_rom();
|
|
|
|
}
|
2022-01-09 15:40:30 -07:00
|
|
|
} else if (command == CMD_RESET) {
|
|
|
|
if (sbyte == CMD_RESET_BYTE) {
|
|
|
|
hard_reset();
|
|
|
|
}
|
2018-06-20 00:45:11 -06:00
|
|
|
} else if (command == CMD_ROM_READ) {
|
|
|
|
kiss_dump_eeprom();
|
|
|
|
} else if (command == CMD_ROM_WRITE) {
|
|
|
|
if (sbyte == FESC) {
|
|
|
|
ESCAPE = true;
|
|
|
|
} else {
|
|
|
|
if (ESCAPE) {
|
|
|
|
if (sbyte == TFEND) sbyte = FEND;
|
|
|
|
if (sbyte == TFESC) sbyte = FESC;
|
|
|
|
ESCAPE = false;
|
|
|
|
}
|
|
|
|
cbuf[frame_len++] = sbyte;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frame_len == 2) {
|
|
|
|
eeprom_write(cbuf[0], cbuf[1]);
|
|
|
|
}
|
|
|
|
} else if (command == CMD_FW_VERSION) {
|
|
|
|
kiss_indicate_version();
|
2022-01-09 15:40:30 -07:00
|
|
|
} else if (command == CMD_PLATFORM) {
|
|
|
|
kiss_indicate_platform();
|
|
|
|
} else if (command == CMD_MCU) {
|
|
|
|
kiss_indicate_mcu();
|
2022-01-22 14:34:03 -07:00
|
|
|
} else if (command == CMD_BOARD) {
|
|
|
|
kiss_indicate_board();
|
2018-06-20 08:32:30 -06:00
|
|
|
} else if (command == CMD_CONF_SAVE) {
|
|
|
|
eeprom_conf_save();
|
|
|
|
} else if (command == CMD_CONF_DELETE) {
|
|
|
|
eeprom_conf_delete();
|
2022-10-28 16:53:39 -06:00
|
|
|
} else if (command == CMD_FB_EXT) {
|
|
|
|
#if HAS_DISPLAY == true
|
|
|
|
if (sbyte == 0xFF) {
|
|
|
|
kiss_indicate_fbstate();
|
|
|
|
} else if (sbyte == 0x00) {
|
|
|
|
ext_fb_disable();
|
|
|
|
kiss_indicate_fbstate();
|
|
|
|
} else if (sbyte == 0x01) {
|
|
|
|
ext_fb_enable();
|
|
|
|
kiss_indicate_fbstate();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} else if (command == CMD_FB_WRITE) {
|
|
|
|
if (sbyte == FESC) {
|
|
|
|
ESCAPE = true;
|
|
|
|
} else {
|
|
|
|
if (ESCAPE) {
|
|
|
|
if (sbyte == TFEND) sbyte = FEND;
|
|
|
|
if (sbyte == TFESC) sbyte = FESC;
|
|
|
|
ESCAPE = false;
|
|
|
|
}
|
|
|
|
cbuf[frame_len++] = sbyte;
|
|
|
|
}
|
2022-10-30 11:58:12 -06:00
|
|
|
#if HAS_DISPLAY
|
|
|
|
if (frame_len == 9) {
|
|
|
|
uint8_t line = cbuf[0];
|
|
|
|
if (line > 63) line = 63;
|
|
|
|
int fb_o = line*8;
|
|
|
|
memcpy(fb+fb_o, cbuf+1, 8);
|
|
|
|
}
|
|
|
|
#endif
|
2022-10-28 16:53:39 -06:00
|
|
|
} else if (command == CMD_FB_READ) {
|
|
|
|
if (sbyte != 0x00) {
|
|
|
|
kiss_indicate_fb();
|
|
|
|
}
|
2022-10-30 06:51:36 -06:00
|
|
|
} else if (command == CMD_BT_CTRL) {
|
|
|
|
#if HAS_BLUETOOTH
|
|
|
|
if (sbyte == 0x00) {
|
2022-10-30 07:52:22 -06:00
|
|
|
bt_stop();
|
|
|
|
bt_conf_save(false);
|
2022-10-30 06:51:36 -06:00
|
|
|
} else if (sbyte == 0x01) {
|
2022-10-30 07:52:22 -06:00
|
|
|
bt_start();
|
|
|
|
bt_conf_save(true);
|
2022-10-30 06:51:36 -06:00
|
|
|
} else if (sbyte == 0x02) {
|
|
|
|
bt_enable_pairing();
|
|
|
|
}
|
|
|
|
#endif
|
2018-04-05 10:10:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-14 13:12:33 -07:00
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
|
|
|
portMUX_TYPE update_lock = portMUX_INITIALIZER_UNLOCKED;
|
|
|
|
#endif
|
|
|
|
|
2018-04-26 07:52:43 -06:00
|
|
|
void updateModemStatus() {
|
2022-01-14 13:12:33 -07:00
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
|
|
|
portENTER_CRITICAL(&update_lock);
|
|
|
|
#endif
|
|
|
|
|
2018-04-26 07:52:43 -06:00
|
|
|
uint8_t status = LoRa.modemStatus();
|
2022-10-28 16:53:39 -06:00
|
|
|
current_rssi = LoRa.currentRssi();
|
2018-04-26 07:52:43 -06:00
|
|
|
last_status_update = millis();
|
2022-01-14 13:12:33 -07:00
|
|
|
|
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
|
|
|
portEXIT_CRITICAL(&update_lock);
|
|
|
|
#endif
|
|
|
|
|
2022-01-14 03:01:46 -07:00
|
|
|
if (status & SIG_DETECT == SIG_DETECT) { stat_signal_detected = true; } else { stat_signal_detected = false; }
|
|
|
|
if (status & SIG_SYNCED == SIG_SYNCED) { stat_signal_synced = true; } else { stat_signal_synced = false; }
|
|
|
|
if (status & RX_ONGOING == RX_ONGOING) { stat_rx_ongoing = true; } else { stat_rx_ongoing = false; }
|
2018-04-26 07:52:43 -06:00
|
|
|
|
|
|
|
if (stat_signal_detected || stat_signal_synced || stat_rx_ongoing) {
|
|
|
|
if (dcd_count < dcd_threshold) {
|
|
|
|
dcd_count++;
|
|
|
|
dcd = true;
|
|
|
|
} else {
|
|
|
|
dcd = true;
|
|
|
|
dcd_led = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (dcd_count > 0) {
|
|
|
|
dcd_count--;
|
|
|
|
} else {
|
|
|
|
dcd_led = false;
|
|
|
|
}
|
|
|
|
dcd = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dcd_led) {
|
|
|
|
led_rx_on();
|
|
|
|
} else {
|
|
|
|
led_rx_off();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void checkModemStatus() {
|
|
|
|
if (millis()-last_status_update >= status_interval_ms) {
|
|
|
|
updateModemStatus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-20 00:45:11 -06:00
|
|
|
void validateStatus() {
|
2022-01-21 12:43:29 -07:00
|
|
|
#if MCU_VARIANT == MCU_1284P
|
|
|
|
uint8_t boot_flags = OPTIBOOT_MCUSR;
|
|
|
|
uint8_t F_POR = PORF;
|
|
|
|
uint8_t F_BOR = BORF;
|
|
|
|
uint8_t F_WDR = WDRF;
|
|
|
|
#elif MCU_VARIANT == MCU_2560
|
2022-01-09 15:40:30 -07:00
|
|
|
uint8_t boot_flags = OPTIBOOT_MCUSR;
|
2022-01-21 12:43:29 -07:00
|
|
|
if (boot_flags == 0x00) boot_flags = 0x03;
|
2022-01-09 15:40:30 -07:00
|
|
|
uint8_t F_POR = PORF;
|
|
|
|
uint8_t F_BOR = BORF;
|
|
|
|
uint8_t F_WDR = WDRF;
|
|
|
|
#elif MCU_VARIANT == MCU_ESP32
|
|
|
|
// TODO: Get ESP32 boot flags
|
|
|
|
uint8_t boot_flags = 0x02;
|
|
|
|
uint8_t F_POR = 0x00;
|
|
|
|
uint8_t F_BOR = 0x00;
|
|
|
|
uint8_t F_WDR = 0x01;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (boot_flags & (1<<F_POR)) {
|
2021-12-26 03:27:32 -07:00
|
|
|
boot_vector = START_FROM_POWERON;
|
2022-01-09 15:40:30 -07:00
|
|
|
} else if (boot_flags & (1<<F_BOR)) {
|
2021-12-26 03:27:32 -07:00
|
|
|
boot_vector = START_FROM_BROWNOUT;
|
2022-01-09 15:40:30 -07:00
|
|
|
} else if (boot_flags & (1<<F_WDR)) {
|
2021-12-26 03:27:32 -07:00
|
|
|
boot_vector = START_FROM_BOOTLOADER;
|
|
|
|
} else {
|
|
|
|
Serial.write("Error, indeterminate boot vector\r\n");
|
2022-10-29 08:44:49 -06:00
|
|
|
#if HAS_DISPLAY
|
|
|
|
if (disp_ready) update_display();
|
|
|
|
#endif
|
2021-12-26 03:27:32 -07:00
|
|
|
led_indicate_boot_error();
|
|
|
|
}
|
|
|
|
|
2022-01-09 15:40:30 -07:00
|
|
|
if (boot_vector == START_FROM_BOOTLOADER || boot_vector == START_FROM_POWERON) {
|
2021-12-26 03:27:32 -07:00
|
|
|
if (eeprom_lock_set()) {
|
|
|
|
if (eeprom_product_valid() && eeprom_model_valid() && eeprom_hwrev_valid()) {
|
|
|
|
if (eeprom_checksum_valid()) {
|
|
|
|
hw_ready = true;
|
|
|
|
|
|
|
|
if (eeprom_have_conf()) {
|
|
|
|
eeprom_conf_load();
|
|
|
|
op_mode = MODE_TNC;
|
|
|
|
startRadio();
|
|
|
|
}
|
2018-06-20 08:32:30 -06:00
|
|
|
}
|
2021-12-26 03:27:32 -07:00
|
|
|
} else {
|
|
|
|
hw_ready = false;
|
2018-06-20 00:45:11 -06:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
hw_ready = false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
hw_ready = false;
|
2021-12-26 03:27:32 -07:00
|
|
|
Serial.write("Error, incorrect boot vector\r\n");
|
2022-10-29 08:44:49 -06:00
|
|
|
#if HAS_DISPLAY
|
|
|
|
if (disp_ready) update_display();
|
|
|
|
#endif
|
2021-12-26 03:27:32 -07:00
|
|
|
led_indicate_boot_error();
|
2018-06-20 00:45:11 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-05 10:10:42 -06:00
|
|
|
void loop() {
|
2018-04-26 07:52:43 -06:00
|
|
|
if (radio_online) {
|
|
|
|
checkModemStatus();
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2022-01-09 15:40:30 -07:00
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
2022-01-10 14:14:30 -07:00
|
|
|
if (packet_ready) {
|
2022-01-14 13:41:10 -07:00
|
|
|
portENTER_CRITICAL(&update_lock);
|
|
|
|
last_rssi = LoRa.packetRssi();
|
|
|
|
last_snr_raw = LoRa.packetSnrRaw();
|
|
|
|
portEXIT_CRITICAL(&update_lock);
|
|
|
|
kiss_indicate_stat_rssi();
|
|
|
|
kiss_indicate_stat_snr();
|
2022-01-10 14:14:30 -07:00
|
|
|
kiss_write_packet();
|
2022-01-09 15:40:30 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-05-28 14:18:19 -06:00
|
|
|
if (queue_height > 0) {
|
2018-04-26 07:52:43 -06:00
|
|
|
if (!dcd_waiting) updateModemStatus();
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2018-04-26 07:52:43 -06:00
|
|
|
if (!dcd && !dcd_led) {
|
|
|
|
if (dcd_waiting) delay(lora_rx_turnaround_ms);
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2018-04-26 08:47:03 -06:00
|
|
|
updateModemStatus();
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2018-04-26 08:47:03 -06:00
|
|
|
if (!dcd) {
|
|
|
|
dcd_waiting = false;
|
2020-05-28 14:18:19 -06:00
|
|
|
|
|
|
|
flushQueue();
|
|
|
|
|
2018-04-26 08:47:03 -06:00
|
|
|
}
|
2018-04-26 07:52:43 -06:00
|
|
|
} else {
|
|
|
|
dcd_waiting = true;
|
|
|
|
}
|
|
|
|
}
|
2018-06-27 02:22:44 -06:00
|
|
|
|
2018-06-18 14:30:24 -06:00
|
|
|
} else {
|
2018-06-20 00:45:11 -06:00
|
|
|
if (hw_ready) {
|
|
|
|
led_indicate_standby();
|
|
|
|
} else {
|
|
|
|
led_indicate_not_ready();
|
|
|
|
stopRadio();
|
|
|
|
}
|
2018-04-26 07:52:43 -06:00
|
|
|
}
|
|
|
|
|
2022-01-09 15:40:30 -07:00
|
|
|
#if MCU_VARIANT == MCU_ESP32
|
|
|
|
buffer_serial();
|
|
|
|
if (!fifo_isempty(&serialFIFO)) serial_poll();
|
2022-01-10 14:14:30 -07:00
|
|
|
#else
|
2022-01-21 12:43:29 -07:00
|
|
|
if (!fifo_isempty_locked(&serialFIFO)) serial_poll();
|
2022-01-09 15:40:30 -07:00
|
|
|
#endif
|
2022-10-28 16:53:39 -06:00
|
|
|
|
|
|
|
#if HAS_DISPLAY
|
2022-10-29 08:44:49 -06:00
|
|
|
if (disp_ready) update_display();
|
2022-10-28 16:53:39 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_PMU
|
2022-10-29 08:44:49 -06:00
|
|
|
if (pmu_ready) update_pmu();
|
2022-10-28 16:53:39 -06:00
|
|
|
#endif
|
2022-10-30 06:51:36 -06:00
|
|
|
|
|
|
|
#if HAS_BLUETOOTH
|
2022-10-30 07:52:22 -06:00
|
|
|
if (!bt_init_ran && millis() > 1000) {
|
|
|
|
bt_init();
|
|
|
|
bt_init_ran = true;
|
|
|
|
}
|
|
|
|
|
2022-10-30 06:51:36 -06:00
|
|
|
if (bt_ready) update_bt();
|
|
|
|
#endif
|
2020-05-28 14:18:19 -06:00
|
|
|
}
|
|
|
|
|
2020-05-29 06:58:10 -06:00
|
|
|
volatile bool serial_polling = false;
|
2020-05-28 14:18:19 -06:00
|
|
|
void serial_poll() {
|
2020-05-29 06:58:10 -06:00
|
|
|
serial_polling = true;
|
|
|
|
|
2022-01-09 15:40:30 -07:00
|
|
|
#if MCU_VARIANT != MCU_ESP32
|
2020-05-28 14:18:19 -06:00
|
|
|
while (!fifo_isempty_locked(&serialFIFO)) {
|
2022-01-09 15:40:30 -07:00
|
|
|
#else
|
|
|
|
while (!fifo_isempty(&serialFIFO)) {
|
|
|
|
#endif
|
2020-05-29 06:58:10 -06:00
|
|
|
char sbyte = fifo_pop(&serialFIFO);
|
2018-04-05 10:10:42 -06:00
|
|
|
serialCallback(sbyte);
|
2020-05-28 14:18:19 -06:00
|
|
|
}
|
2020-05-29 06:58:10 -06:00
|
|
|
|
|
|
|
serial_polling = false;
|
2020-05-28 14:18:19 -06:00
|
|
|
}
|
|
|
|
|
2022-01-10 11:33:47 -07:00
|
|
|
#if MCU_VARIANT != MCU_ESP32
|
|
|
|
#define MAX_CYCLES 20
|
|
|
|
#else
|
2022-01-10 18:54:32 -07:00
|
|
|
#define MAX_CYCLES 10
|
2022-01-10 11:33:47 -07:00
|
|
|
#endif
|
2020-05-28 14:18:19 -06:00
|
|
|
void buffer_serial() {
|
2020-05-29 06:58:10 -06:00
|
|
|
if (!serial_buffering) {
|
|
|
|
serial_buffering = true;
|
|
|
|
|
|
|
|
uint8_t c = 0;
|
2022-10-30 11:35:53 -06:00
|
|
|
|
|
|
|
#if HAS_BLUETOOTH
|
|
|
|
while (
|
|
|
|
c < MAX_CYCLES &&
|
|
|
|
( (bt_state != BT_STATE_CONNECTED && Serial.available()) || (bt_state == BT_STATE_CONNECTED && SerialBT.available()) )
|
|
|
|
)
|
|
|
|
#else
|
|
|
|
while (c < MAX_CYCLES && Serial.available())
|
|
|
|
#endif
|
|
|
|
{
|
2020-05-29 06:58:10 -06:00
|
|
|
c++;
|
|
|
|
|
2022-01-09 15:40:30 -07:00
|
|
|
#if MCU_VARIANT != MCU_ESP32
|
|
|
|
if (!fifo_isfull_locked(&serialFIFO)) {
|
|
|
|
fifo_push_locked(&serialFIFO, Serial.read());
|
|
|
|
}
|
|
|
|
#else
|
2022-10-30 11:35:53 -06:00
|
|
|
if (HAS_BLUETOOTH && bt_state == BT_STATE_CONNECTED) {
|
|
|
|
if (!fifo_isfull(&serialFIFO)) {
|
|
|
|
fifo_push(&serialFIFO, SerialBT.read());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!fifo_isfull(&serialFIFO)) {
|
|
|
|
fifo_push(&serialFIFO, Serial.read());
|
|
|
|
}
|
2022-01-09 15:40:30 -07:00
|
|
|
}
|
|
|
|
#endif
|
2018-06-27 02:22:44 -06:00
|
|
|
}
|
2020-05-29 06:58:10 -06:00
|
|
|
|
|
|
|
serial_buffering = false;
|
2018-04-05 10:10:42 -06:00
|
|
|
}
|
|
|
|
}
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2020-05-29 06:58:10 -06:00
|
|
|
void serial_interrupt_init() {
|
2022-01-09 15:40:30 -07:00
|
|
|
#if MCU_VARIANT == MCU_1284P
|
|
|
|
TCCR3A = 0;
|
|
|
|
TCCR3B = _BV(CS10) |
|
|
|
|
_BV(WGM33)|
|
|
|
|
_BV(WGM32);
|
|
|
|
|
|
|
|
// Buffer incoming frames every 1ms
|
|
|
|
ICR3 = 16000;
|
|
|
|
|
|
|
|
TIMSK3 = _BV(ICIE3);
|
2020-05-28 14:18:19 -06:00
|
|
|
|
2022-01-09 15:40:30 -07:00
|
|
|
#elif MCU_VARIANT == MCU_2560
|
|
|
|
// TODO: This should probably be updated for
|
|
|
|
// atmega2560 support. Might be source of
|
|
|
|
// reported issues from snh.
|
|
|
|
TCCR3A = 0;
|
|
|
|
TCCR3B = _BV(CS10) |
|
|
|
|
_BV(WGM33)|
|
|
|
|
_BV(WGM32);
|
|
|
|
|
|
|
|
// Buffer incoming frames every 1ms
|
|
|
|
ICR3 = 16000;
|
|
|
|
|
|
|
|
TIMSK3 = _BV(ICIE3);
|
|
|
|
|
|
|
|
#elif MCU_VARIANT == MCU_ESP32
|
|
|
|
// No interrupt-based polling on ESP32
|
|
|
|
#endif
|
2020-05-28 14:18:19 -06:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-01-09 15:40:30 -07:00
|
|
|
#if MCU_VARIANT == MCU_1284P || MCU_VARIANT == MCU_2560
|
|
|
|
ISR(TIMER3_CAPT_vect) {
|
|
|
|
buffer_serial();
|
|
|
|
}
|
2022-01-13 14:18:18 -07:00
|
|
|
#endif
|