examples/embedding: Example for embedding MicroPython in an app.

This commit is contained in:
Paul Sokolovsky
2016-06-16 01:27:21 +03:00
parent e47c2ec64a
commit 1e77e25675
5 changed files with 421 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
MPTOP = ../..
CFLAGS = -std=c99 -I. -I$(MPTOP) -DNO_QSTR
LDFLAGS = -L.
hello-embed: hello-embed.o -lmicropython
-lmicropython:
$(MAKE) -f $(MPTOP)/examples/embedding/Makefile.upylib MPTOP=$(MPTOP)