Skip to content
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
14 changes: 14 additions & 0 deletions examples/bme280/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Makefile for user application

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

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

# Include userland master makefile. Contains rules and flags for actually
# building the application.

override CFLAGS += -DBME280_32BIT_ENABLE

include $(TOCK_USERLAND_BASE_DIR)/AppMakefile.mk
8 changes: 8 additions & 0 deletions examples/bme280/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Blink App
=========

The canonical "blink" app for an embedded platform. This app will
blink all of the LEDs that are registered with the kernel.

To learn more, please see the
[Blink an LED](https://book.tockos.org/tutorials/01_running_blink) tutorial.
Loading
Loading