source: rtos_arduino/trunk/examples/ThingSpeak_basic/Makefile@ 190

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

Thinkgspeakのサポート

File size: 1012 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#
14# Serialの扱い
15# ARDUINO_SERIAL
16# NOUSE_SERIAL
17# USE_SERIAL
18#
19#ARDUINO_SERIAL = NOUSE_SERIAL
20ARDUINO_SERIAL = USE_SERIAL
21
22#
23# ライブラリの使用
24#
25#USE_ARDUINO_SPI = true
26#USE_ARDUINO_NCESCAN = true
27#USE_ARDUINO_SD = true
28#USE_ARDUINO_TFT = true
29#USE_ETHERNET2 = true
30#USE_NAXESMOTION = true
31#USE_WIRE = true
32
33#
34# RCAのディレクトリの定義
35#
36RCA_DIR = ../..
37
38#
39# ASPのソースファイルのディレクトリの定義
40#
41SRCDIR = ../../asp_1.9.2
42
43#
44# その他のオプション
45#
46APPL_CFLAGS +=
47APPL_LIBS +=
48APPL_DIR +=
49
50
51APPL_DIR += $(RCA_DIR)/arduino_lib/libraries/ESP8266_Arudino_AT
52APPL_CXXOBJS += ESP8266.o
53
54APPL_DIR += $(RCA_DIR)/arduino_lib/libraries/thingspeak-arduino/src
55APPL_CXXOBJS += ThingSpeak.o
56
57include $(RCA_DIR)/lib/Makefile.rca
Note: See TracBrowser for help on using the repository browser.