source: rtos_arduino/trunk/examples/PIXY_Wifi/Makefile@ 236

Last change on this file since 236 was 236, checked in by ertl-honda, 8 years ago

PIXY関連のファイルの追加

File size: 995 bytes
Line 
1#
2# ターゲットの指定(Makefile.targetで上書きされるのを防ぐため)
3#
4all:
5
6#
7# アプリケーションファイル
8#
9APPL_CXXOBJS += rca_app.o
10APPL_COBJS +=
11APPL_CFG = rca_app.cfg
12
13
14APPL_CXXOBJS += ZumoMotors.o
15
16#
17# Serialの扱い
18# ARDUINO_SERIAL
19# NOUSE_SERIAL
20# USE_SERIAL
21#
22#ARDUINO_SERIAL = NOUSE_SERIAL
23ARDUINO_SERIAL = USE_SERIAL
24
25#
26# ライブラリの使用
27#
28USE_ARDUINO_SPI = true
29#USE_ARDUINO_NCESCAN = true
30#USE_ARDUINO_SD = true
31#USE_ARDUINO_TFT = true
32#USE_ETHERNET2 = true
33#USE_NAXESMOTION = true
34#USE_WIRE = true
35
36#
37# RCAのディレクトリの定義
38#
39RCA_DIR = ../..
40
41#
42# ASPのソースファイルのディレクトリの定義
43#
44SRCDIR = ../../asp_1.9.2
45
46#
47# その他のオプション
48#
49APPL_CFLAGS +=
50APPL_LIBS +=
51APPL_DIR +=
52
53APPL_DIR += $(RCA_DIR)/arduino_lib/libraries/ESP8266_Arudino_AT/
54APPL_CXXOBJS += ESP8266.o
55
56APPL_DIR += $(RCA_DIR)/arduino_lib/libraries/Pixy
57
58include $(RCA_DIR)/lib/Makefile.rca
Note: See TracBrowser for help on using the repository browser.