1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-04-21 12:27:27 +03:00

Adding LUA tutorials: lua_calls_C1 - lua_calls_C5

Adding blinker demo: lua_blink_led
This commit is contained in:
Carlos Camargo
2010-09-06 20:24:53 -05:00
parent acf516e22d
commit 7d9b7b803c
29 changed files with 1049 additions and 0 deletions

10
lua/examples/Makefile Normal file
View File

@@ -0,0 +1,10 @@
DIRS = lua_blink_led lua_calls_C1 lua_calls_C2 lua_calls_C3 lua_calls_C4 lua_calls_C5
all:
for n in $(DIRS); do $(MAKE) -C $$n || exit 1; done
upload:
for n in $(DIRS); do $(MAKE) -C $$n upload || exit 1; done
clean:
for n in $(DIRS); do $(MAKE) -C $$n clean || exit 1; done