Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add LR1110 library for WM1110 LoRa radio #490

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions examples/tests/lr1110/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
LR1110 Test Apps
================

The [LR1110](https://www.semtech.com/products/wireless-rf/lora-edge/lr1110) is
an integrated LoRa radio with a WiFi access point scanner and a GNSS scanner
built in.

These example apps use the `libtock-c/lr1110` library to implement the
LoRa/WiFi/GNSS functionality. While this library should work with any LR1110
radio, this was developed and tested with the [WM1110 Dev
Kit](https://www.seeedstudio.com/Wio-WM1110-Dev-Kit-p-5677.html).
19 changes: 19 additions & 0 deletions examples/tests/lr1110/lorawan/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Makefile for user application

# Specify this directory relative to the current application.
TOCK_USERLAND_BASE_DIR = ../../../..

# External libraries used
EXTERN_LIBS += $(TOCK_USERLAND_BASE_DIR)/lr1110

override CFLAGS += -I$(TOCK_USERLAND_BASE_DIR)/lr1110

# Which files to compile.
C_SRCS += $(wildcard *.c)

APP_HEAP_SIZE := 40000
STACK_SIZE := 4096

# Include userland master makefile. Contains rules and flags for actually
# building the application.
include $(TOCK_USERLAND_BASE_DIR)/AppMakefile.mk
10 changes: 10 additions & 0 deletions examples/tests/lr1110/lorawan/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
LR1110 LoRaWAN Radio Example
============================

This is a test app for using the lr1110 library with the [WM1110 wireless
module](https://www.seeedstudio.com/Wio-WM1110-Dev-Kit-p-5677.html).

The library is a port of the [library from Seeed
Studio](https://github.com/Seeed-Studio/Seeed_Wio_WM1110_Dev_Board) to Tock.

This test is designed to connect to the Things Network in the US915 band.
Loading
Loading