Skip to content

Commit 666e42b

Browse files
committed
validated ota app userland app support for current kernel
1 parent f6684f4 commit 666e42b

File tree

2 files changed

+5348
-0
lines changed

2 files changed

+5348
-0
lines changed

examples/ota_app_wip/Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Makefile for user application
2+
3+
# Specify this directory relative to the current application.
4+
TOCK_USERLAND_BASE_DIR = ../..
5+
6+
# Which files to compile.
7+
C_SRCS := $(wildcard *.c)
8+
9+
STACK_SIZE := 6114
10+
11+
# Include userland master makefile. Contains rules and flags for actually
12+
# building the application.
13+
include $(TOCK_USERLAND_BASE_DIR)/AppMakefile.mk

0 commit comments

Comments
 (0)