mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-03 14:37:46 +00:00
8cfe5ebc4a
Signed-off-by: deadprogram <ron@hybridgroup.com>
66 lines
1.3 KiB
Go
66 lines
1.3 KiB
Go
// AT command set console running on the device UART to communicate with
|
|
// an attached LoRa device.
|
|
//
|
|
// Computer <-> UART <-> MCU <-> SPI <-> SX126x/SX127x
|
|
//
|
|
// Connect using default baudrate for this hardware, 8-N-1 with your terminal program.
|
|
// For details on the AT command set, see:
|
|
// https://files.seeedstudio.com/products/317990687/res/LoRa-E5%20AT%20Command%20Specification_V1.0%20.pdf
|
|
package main
|
|
|
|
import (
|
|
"machine"
|
|
"time"
|
|
)
|
|
|
|
// change these to test a different UART or pins if available
|
|
var (
|
|
uart = machine.Serial
|
|
tx = machine.UART_TX_PIN
|
|
rx = machine.UART_RX_PIN
|
|
input = make([]byte, 0, 64)
|
|
|
|
radio LoraRadio
|
|
defaultTimeout uint32 = 1000
|
|
)
|
|
|
|
func main() {
|
|
uart.Configure(machine.UARTConfig{TX: tx, RX: rx})
|
|
|
|
var err error
|
|
radio, err = setupLora()
|
|
if err != nil {
|
|
fail(err.Error())
|
|
}
|
|
|
|
for {
|
|
if uart.Buffered() > 0 {
|
|
data, _ := uart.ReadByte()
|
|
|
|
switch data {
|
|
case 13:
|
|
// return key
|
|
if err := parse(input); err != nil {
|
|
uart.Write([]byte("ERROR: "))
|
|
uart.Write([]byte(err.Error()))
|
|
crlf()
|
|
}
|
|
input = input[:0]
|
|
default:
|
|
// just capture the character
|
|
input = append(input, data)
|
|
}
|
|
}
|
|
time.Sleep(10 * time.Millisecond)
|
|
}
|
|
}
|
|
|
|
func fail(msg string) {
|
|
for {
|
|
uart.Write([]byte(msg))
|
|
crlf()
|
|
|
|
time.Sleep(time.Minute)
|
|
}
|
|
}
|