-
Notifications
You must be signed in to change notification settings - Fork 2
/
SConstruct
executable file
·252 lines (214 loc) · 8.95 KB
/
SConstruct
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#!/usr/bin/python
# scons script for the Arduino sketch
# http://code.google.com/p/arscons/
#
# Copyright (C) 2010 by Homin Lee <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# You'll need the serial module: http://pypi.python.org/pypi/pyserial
# Basic Usage:
# 1. make a folder which have same name of the sketch (ex. Blink/ for Blik.pde)
# 2. put the sketch and SConstruct(this file) under the folder.
# 3. to make the HEX. do following in the folder.
# $ scons
# 4. to upload the binary, do following in the folder.
# $ scons upload
# Thanks to:
# * Ovidiu Predescu <[email protected]> and Lee Pike <[email protected]>
# for Mac port and bugfix.
#
# This script tries to determine the port to which you have an Arduino
# attached. If multiple USB serial devices are attached to your
# computer, you'll need to explicitly specify the port to use, like
# this:
#
# $ scons ARDUINO_PORT=/dev/ttyUSB0
#
# To add your own directory containing user libraries, pass EXTRA_LIB
# to scons, like this:
#
# $ scons EXTRA_LIB=<my-extra-library-dir>
#
from glob import glob
import sys
import re
import os
pathJoin = os.path.join
env = Environment()
platform = env['PLATFORM']
def getUsbTty(rx):
usb_ttys = glob(rx)
if len(usb_ttys) == 1: return usb_ttys[0]
else: return None
AVR_BIN_PREFIX = None
AVRDUDE_CONF = None
if platform == 'darwin':
# For MacOS X, pick up the AVR tools from within Arduino.app
ARDUINO_HOME_DEFAULT = '/Applications/Arduino.app/Contents/Resources/Java'
ARDUINO_PORT_DEFAULT = getUsbTty('/dev/tty.usbserial*')
elif platform == 'win32':
# For Windows, use environment variables.
ARDUINO_HOME_DEFAULT = os.environ.get('ARDUINO_HOME')
ARDUINO_PORT_DEFAULT = os.environ.get('ARDUINO_PORT')
else:
# For Ubuntu Linux (9.10 or higher)
ARDUINO_HOME_DEFAULT = '/usr/share/arduino/' #'/home/YOU/apps/arduino-00XX/'
ARDUINO_PORT_DEFAULT = getUsbTty('/dev/ttyUSB*')
AVR_BIN_PREFIX = 'avr-'
ARDUINO_BOARD_DEFAULT = os.environ.get('ARDUINO_BOARD', 'atmega328')
ARDUINO_HOME = ARGUMENTS.get('ARDUINO_HOME', ARDUINO_HOME_DEFAULT)
ARDUINO_PORT = ARGUMENTS.get('ARDUINO_PORT', ARDUINO_PORT_DEFAULT)
ARDUINO_BOARD = ARGUMENTS.get('ARDUINO_BOARD', ARDUINO_BOARD_DEFAULT)
ARDUINO_VER = ARGUMENTS.get('ARDUINO_VER', 22) # Arduino 0022
RST_TRIGGER = ARGUMENTS.get('RST_TRIGGER', None) # use built-in pulseDTR() by default
EXTRA_LIB = ARGUMENTS.get('EXTRA_LIB', None) # handy for adding another arduino-lib dir
if not ARDUINO_HOME:
print 'ARDUINO_HOME must be defined.'
raise KeyError('ARDUINO_HOME')
ARDUINO_CONF = pathJoin(ARDUINO_HOME, 'hardware/arduino/boards.txt')
def getBoardConf(strPtn):
ptn = re.compile(strPtn)
for line in open(ARDUINO_CONF):
result = ptn.findall(line)
if result:
return result[0]
assert(False)
MCU = getBoardConf(r'^%s\.build\.mcu=(.*)'%ARDUINO_BOARD)
F_CPU = getBoardConf(r'^%s\.build\.f_cpu=(.*)'%ARDUINO_BOARD)
VARIANT = getBoardConf(r'^%s\.build\.variant=(.*)'%ARDUINO_BOARD)
ARDUINO_CORE = pathJoin(ARDUINO_HOME, 'hardware/arduino/cores/arduino')
ARDUINO_VARS = pathJoin(ARDUINO_HOME, 'hardware/arduino/variants/' + VARIANT)
ARDUINO_SKEL = pathJoin(ARDUINO_CORE, 'main.cpp')
# Some OSs need bundle with IDE tool-chain
if platform == 'darwin' or platform == 'win32':
AVR_BIN_PREFIX = pathJoin(ARDUINO_HOME, 'hardware/tools/avr/bin', 'avr-')
AVRDUDE_CONF = pathJoin(ARDUINO_HOME, 'hardware/tools/avr/etc/avrdude.conf')
ARDUINO_LIBS = []
if EXTRA_LIB != None:
ARDUINO_LIBS += [EXTRA_LIB]
ARDUINO_LIBS += [pathJoin(ARDUINO_HOME, 'libraries')]
# check given board name, ARDUINO_BOARD is valid one
ptnBoard = re.compile(r'^(.*)\.name=(.*)')
boards = {}
for line in open(ARDUINO_CONF):
result = ptnBoard.findall(line)
if result:
boards[result[0][0]] = result[0][1]
if not ARDUINO_BOARD in boards.keys():
print ("ERROR! the given board name, %s is not in the supported board list:"%ARDUINO_BOARD)
print ("all available board names are:")
for name in boards.keys():
print ("\t%s for %s"%(name.ljust(14), boards[name]))
print ("however, you may edit %s to add a new board."%ARDUINO_CONF)
sys.exit(-1)
# There should be a file with the same name as the folder and with the extension .pde
TARGET = os.path.basename(os.path.realpath(os.curdir))
assert(os.path.exists(TARGET+'.pde'))
cFlags = ['-ffunction-sections', '-fdata-sections', '-fno-exceptions',
'-funsigned-char', '-funsigned-bitfields', '-fpack-struct', '-fshort-enums',
'-Os', '-mmcu=%s'%MCU]
envArduino = Environment(CC = AVR_BIN_PREFIX+'gcc', CXX = AVR_BIN_PREFIX+'g++',
CPPPATH = ['.', 'build/core', 'build/variants'],
CPPDEFINES = {'F_CPU':F_CPU, 'ARDUINO':ARDUINO_VER},
CFLAGS = cFlags+['-std=gnu99'], CCFLAGS = cFlags, TOOLS = ['gcc','g++'])
def fnProcessing(target, source, env):
wp = open ('%s'%target[0], 'wb')
wp.write(open(ARDUINO_SKEL).read())
# Add this preprocessor directive to localize the errors.
sourcePath = str(source[0]).replace('\\', '\\\\');
wp.write('#line 1 "%s"\r\n' % sourcePath)
wp.write(open('%s'%source[0]).read())
wp.close()
return None
envArduino.Append(BUILDERS = {'Processing':Builder(action = fnProcessing,
suffix = '.cpp', src_suffix = '.pde')})
envArduino.Append(BUILDERS={'Elf':Builder(action=AVR_BIN_PREFIX+'gcc '+
'-mmcu=%s -Os -Wl,--gc-sections -o $TARGET $SOURCES -lm'%MCU)})
envArduino.Append(BUILDERS={'Hex':Builder(action=AVR_BIN_PREFIX+'objcopy '+
'-O ihex -R .eeprom $SOURCES $TARGET')})
# add arduino core sources
VariantDir('build/core', ARDUINO_CORE)
VariantDir('build/variants', ARDUINO_VARS)
gatherSources = lambda x: glob(pathJoin(x, '*.c'))+\
glob(pathJoin(x, '*.cpp'))+\
glob(pathJoin(x, '*.S'))
core_sources = gatherSources(ARDUINO_CORE)
core_sources = filter(lambda x: not (os.path.basename(x) == 'main.cpp'), core_sources)
core_sources = map(lambda x: x.replace(ARDUINO_CORE, 'build/core/'), core_sources)
# add libraries
libCandidates = []
ptnLib = re.compile(r'^[ ]*#[ ]*include [<"](.*)\.h[>"]')
for line in open (TARGET+'.pde'):
result = ptnLib.findall(line)
if result:
libCandidates += result
# Hack. In version 20 of the Arduino IDE, the Ethernet library depends
# implicitly on the SPI library.
if ARDUINO_VER >= 20 and 'Ethernet' in libCandidates:
libCandidates += ['SPI']
all_libs_sources = []
index = 0
for orig_lib_dir in ARDUINO_LIBS:
lib_sources = []
lib_dir = 'build/lib_%02d'%index
VariantDir(lib_dir, orig_lib_dir)
for libPath in filter(os.path.isdir, glob(pathJoin(orig_lib_dir, '*'))):
libName = os.path.basename(libPath)
if not libName in libCandidates:
continue
envArduino.Append(CPPPATH = libPath.replace(orig_lib_dir, lib_dir + '/'))
lib_sources = gatherSources(libPath)
utilDir = pathJoin(libPath, 'utility')
if os.path.exists(utilDir) and os.path.isdir(utilDir):
lib_sources += gatherSources(utilDir)
envArduino.Append(CPPPATH = utilDir.replace(orig_lib_dir, lib_dir))
lib_sources = map(lambda x: x.replace(orig_lib_dir, lib_dir + '/'), lib_sources)
all_libs_sources += lib_sources
index += 1
# Convert sketch(.pde) to cpp
envArduino.Processing('build/'+TARGET+'.cpp', 'build/'+TARGET+'.pde')
VariantDir('build', '.')
sources = ['build/'+TARGET+'.cpp']
sources += all_libs_sources
sources += core_sources
# Add raw sources which live in sketch dir.
# sources += gatherSources('.')
# Finally Build!!
objs = envArduino.Object(sources) #, LIBS=libs, LIBPATH='.')
envArduino.Elf(TARGET+'.elf', objs)
envArduino.Hex(TARGET+'.hex', TARGET+'.elf')
# Print Size
# TODO: check binary size
MAX_SIZE = getBoardConf(r'^%s\.upload.maximum_size=(.*)'%ARDUINO_BOARD)
print ("maximum size for hex file: %s bytes"%MAX_SIZE)
envArduino.Command(None, TARGET+'.hex', AVR_BIN_PREFIX+'size --target=ihex $SOURCE')
# Reset
def pulseDTR(target, source, env):
import serial
import time
ser = serial.Serial(ARDUINO_PORT)
ser.setDTR(1)
time.sleep(0.5)
ser.setDTR(0)
ser.close()
if RST_TRIGGER:
reset_cmd = '%s %s'%(RST_TRIGGER, ARDUINO_PORT)
else:
reset_cmd = pulseDTR
# Upload
UPLOAD_PROTOCOL = getBoardConf(r'^%s\.upload\.protocol=(.*)'%ARDUINO_BOARD)
UPLOAD_SPEED = getBoardConf(r'^%s\.upload\.speed=(.*)'%ARDUINO_BOARD)
avrdudeOpts = ['-V', '-F', '-c %s'%UPLOAD_PROTOCOL, '-b %s'%UPLOAD_SPEED,
'-p %s'%MCU, '-P %s'%ARDUINO_PORT, '-U flash:w:$SOURCES']
if AVRDUDE_CONF:
avrdudeOpts += ['-C %s'%AVRDUDE_CONF]
fuse_cmd = '%s %s'%(pathJoin(os.path.dirname(AVR_BIN_PREFIX), 'avrdude'),
' '.join(avrdudeOpts))
upload = envArduino.Alias('upload', TARGET+'.hex', [reset_cmd, fuse_cmd]);
AlwaysBuild(upload)
# Clean build directory
envArduino.Clean('all', 'build/')
# vim: et sw=4 fenc=utf-8: