Skip to content

Latest commit

 

History

History
139 lines (101 loc) · 4.03 KB

README.md

File metadata and controls

139 lines (101 loc) · 4.03 KB

SparkFun LoRa Thing Plus - expLoRaBLE

Board features

  • 21 Multifunctional GPIO
  • Thing Plus (or Feather) Form-Factor:
  • USB-C Connector
  • 2-pin JST Connector for a LiPo Battery (not included)
  • 4-pin JST Qwiic Connector
  • LoRa
  • BLE

For more details visit the SparkFun website.

Flashing the kernel

The kernel can be programmed using the Ambiq python scrips. cd into boards/apollo3/lora_things_plus/ directory and run:

$ make flash

(or)

$ make flash-debug

This will flash Tock onto the board via the /dev/ttyUSB0 port. If you would like to use a different port you can specify it from the PORT variable.

$ PORT=/dev/ttyUSB2 make flash

This will flash Tock over the SparkFun Variable Loader (SVL) using the Ambiq loader. The SVL can always be re-flashed if you want to.

Debugging the board

The SparkFun LoRa Thing Plus exposes JTAG via the small headers in the middle of the board. See the SparkFun hookup guide for a picture of this.

SparkFun sell accessories you can use to connecting to this. It appears something like the J-Link BASE will work, but that hasn't been tested by Tock.

Instead, Tock has tested debugging with the Black Magic Probe. The Black Magic Probe (BMP) is an easy to use, mostly plug and play, JTAG/SWD debugger for embedded microcontrollers.

In order to debug with the BMP, first connect the 2x5 SWD cable to the board and the BMP.

Then power on both boards.

Fire up an ARM GDB instance and attach to the BMP with:

target extended-remote /dev/ttyACM0
monitor swdp_scan
attach 1

You can then use GDB to debug the board

Using LoRa with the board

Tock itself does not support LoRa, instead we run a LoRa application in userspace and use the LoRa specific GPIO and SPI syscalls to control the radio.

LoRaMac-node

LoRaMac-node is written by Semtech the maker of LoRa. It's a commonly used example implementation. The LoRaMac-node implementation has been tested and is capable of sending and recieving between two boards running Tock.

Unfortunately it appears to be unsupported. There is currently a pull request open to add support to running on Tock: Lora-net/LoRaMac-node#1390

You can build the application by running the following in the LoRaMac-node directory:

$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_TOOLCHAIN_FILE="../cmake/toolchain-arm-none-eabi.cmake" \
        -DAPPLICATION="ping-pong" \
        -DMODULATION="LORA" \
        -DREGION_EU868="OFF" \
        -DREGION_US915="OFF" \
        -DREGION_CN779="OFF" \
        -DREGION_EU433="OFF" \
        -DREGION_AU915="ON" \
        -DREGION_AS923="OFF" \
        -DREGION_CN470="OFF" \
        -DREGION_KR920="OFF" \
        -DREGION_IN865="OFF" \
        -DREGION_RU864="OFF" \
        -DBOARD="Tock" \
        -DUSE_RADIO_DEBUG="ON" ..
$ make
$ elf2tab -n ping-pong --stack 2048 --app-heap 1024 --kernel-heap 1024 --kernel-major 2 --kernel-minor 1 -v ./src/apps/ping-pong/ping-pong

Then in the Tock repo you can flash the app with:

$ make flash; APP=LoRaMac-node/build/src/apps/ping-pong/ping-pong.tbf make flash-app

RadioLib

RadioLib is a Universal wireless communication library for embedded devices.

RadioLib includes support for the Semtech SX1262 LoRa module and a range of other protocols. See the RadioLib README for more details.

RadioLib has upstream Tock support, which can be found here: https://github.com/jgromes/RadioLib/tree/master/examples/NonArduino/Tock

The RadioLib example can be built with:

$ git clone https://github.com/jgromes/RadioLib.git
$ cd RadioLib/examples/NonArduino/Tock/
$ ./build.sh

Then in the Tock repo you can flash the kernel and app with:

$ make flash; APP=RadioLib/examples/NonArduino/Tock/build/tock-sx1261.tbf make flash-app