2019-05-08 01:45:01 +00:00
|
|
|
#!/usr/bin/env python
|
2018-05-19 22:39:26 +00:00
|
|
|
#
|
|
|
|
# Builds custom upload command
|
|
|
|
# 1) Run platformio as a subprocess to find a COM port
|
|
|
|
# 2) Build the upload command
|
|
|
|
# 3) Exit and let upload tool do the work
|
|
|
|
#
|
|
|
|
# This script runs between completion of the library/dependencies installation and compilation.
|
|
|
|
#
|
|
|
|
# Will continue on if a COM port isn't found so that the compilation can be done.
|
|
|
|
#
|
|
|
|
|
2019-05-08 01:45:01 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
from __future__ import division
|
|
|
|
|
2022-09-05 18:19:19 +00:00
|
|
|
import subprocess,os,platform
|
2018-05-26 01:26:48 +00:00
|
|
|
from SCons.Script import DefaultEnvironment
|
2021-02-28 04:38:57 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
current_OS = platform.system()
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
env = DefaultEnvironment()
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
build_type = os.environ.get("BUILD_TYPE", 'Not Set')
|
2018-05-19 22:39:26 +00:00
|
|
|
|
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
if not(build_type == 'upload' or build_type == 'traceback' or build_type == 'Not Set') :
|
|
|
|
env.Replace(UPLOAD_PROTOCOL = 'teensy-gui') # run normal Teensy2 scripts
|
|
|
|
else:
|
|
|
|
com_first = ''
|
|
|
|
com_last = ''
|
|
|
|
com_CDC = ''
|
|
|
|
description_first = ''
|
|
|
|
description_last = ''
|
|
|
|
description_CDC = ''
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
#
|
|
|
|
# grab the first com port that pops up unless we find one we know for sure
|
|
|
|
# is a CDC device
|
|
|
|
#
|
|
|
|
def get_com_port(com_search_text, descr_search_text, start):
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
global com_first
|
|
|
|
global com_last
|
|
|
|
global com_CDC
|
|
|
|
global description_first
|
|
|
|
global description_last
|
|
|
|
global description_CDC
|
2018-05-19 22:39:26 +00:00
|
|
|
|
|
|
|
|
2019-05-08 01:45:01 +00:00
|
|
|
print('\nLooking for Serial Port\n')
|
2018-05-26 01:26:48 +00:00
|
|
|
|
|
|
|
# stream output from subprocess and split it into lines
|
|
|
|
pio_subprocess = subprocess.Popen(['platformio', 'device', 'list'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
|
|
|
|
|
|
looking_for_description = False
|
|
|
|
for line in iter(pio_subprocess.stdout.readline, ''):
|
|
|
|
if 0 <= line.find(com_search_text):
|
|
|
|
looking_for_description = True
|
|
|
|
com_last = line.replace('\n', '')
|
|
|
|
if com_first == '':
|
|
|
|
com_first = com_last
|
|
|
|
if 0 <= line.find(descr_search_text) and looking_for_description:
|
|
|
|
looking_for_description = False
|
|
|
|
description_last = line[ start : ]
|
|
|
|
if description_first == '':
|
|
|
|
description_first = description_last
|
|
|
|
if 0 <= description_last.find('CDC'):
|
|
|
|
com_CDC = com_last
|
|
|
|
description_CDC = description_last
|
|
|
|
|
2019-08-07 05:26:31 +00:00
|
|
|
if com_CDC == '' and com_first != '':
|
2018-05-26 01:26:48 +00:00
|
|
|
com_CDC = com_first
|
|
|
|
description_CDC = description_first
|
|
|
|
elif com_CDC == '':
|
|
|
|
com_CDC = 'COM_PORT_NOT_FOUND'
|
|
|
|
|
|
|
|
while 0 <= com_CDC.find('\n'):
|
|
|
|
com_CDC = com_CDC.replace('\n', '')
|
|
|
|
while 0 <= com_CDC.find('\r'):
|
|
|
|
com_CDC = com_CDC.replace('\r', '')
|
|
|
|
|
|
|
|
if com_CDC == 'COM_PORT_NOT_FOUND':
|
2019-05-08 01:45:01 +00:00
|
|
|
print(com_CDC, '\n')
|
2018-05-26 01:26:48 +00:00
|
|
|
else:
|
2019-05-08 01:54:01 +00:00
|
|
|
print('FOUND: ', com_CDC)
|
|
|
|
print('DESCRIPTION: ', description_CDC, '\n')
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
if current_OS == 'Windows':
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
get_com_port('COM', 'Hardware ID:', 13)
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
# avrdude_conf_path = env.get("PIOHOME_DIR") + '\\packages\\toolchain-atmelavr\\etc\\avrdude.conf'
|
2021-02-10 08:57:27 +00:00
|
|
|
avrdude_conf_path = 'buildroot\\share\\vscode\\avrdude.conf'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2021-02-10 08:57:27 +00:00
|
|
|
avrdude_exe_path = 'buildroot\\share\\vscode\\avrdude_5.10.exe'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
# source_path = env.get("PROJECTBUILD_DIR") + '\\' + env.get("PIOENV") + '\\firmware.hex'
|
2019-08-08 13:29:33 +00:00
|
|
|
source_path = '.pio\\build\\' + env.get("PIOENV") + '\\firmware.hex'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
upload_string = avrdude_exe_path + ' -p usb1286 -c avr109 -P ' + com_CDC + ' -U flash:w:' + source_path + ':i'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
if current_OS == 'Darwin': # MAC
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
get_com_port('usbmodem', 'Description:', 13)
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
# avrdude_conf_path = env.get("PIOHOME_DIR") + '/packages/toolchain-atmelavr/etc/avrdude.conf'
|
2020-01-12 01:28:41 +00:00
|
|
|
avrdude_conf_path = 'buildroot/share/vscode/avrdude_macOS.conf'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
|
|
|
|
2020-01-12 01:28:41 +00:00
|
|
|
avrdude_exe_path = 'buildroot/share/vscode/avrdude_5.10_macOS'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
# source_path = env.get("PROJECTBUILD_DIR") + '/' + env.get("PIOENV") + '/firmware.hex'
|
2019-08-08 13:29:33 +00:00
|
|
|
source_path = '.pio/build/' + env.get("PIOENV") + '/firmware.hex'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
# upload_string = 'avrdude -p usb1286 -c avr109 -P ' + com_CDC + ' -U flash:w:' + source_path + ':i'
|
|
|
|
upload_string = avrdude_exe_path + ' -p usb1286 -c avr109 -P ' + com_CDC + ' -C ' + avrdude_conf_path + ' -U flash:w:' + source_path + ':i'
|
2019-05-08 01:45:01 +00:00
|
|
|
print('upload_string: ', upload_string)
|
2018-05-19 22:39:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
if current_OS == 'Linux':
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
get_com_port('/dev/tty', 'Description:', 13)
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
# avrdude_conf_path = env.get("PIOHOME_DIR") + '/packages/toolchain-atmelavr/etc/avrdude.conf'
|
2020-01-12 01:28:41 +00:00
|
|
|
avrdude_conf_path = 'buildroot/share/vscode/avrdude_linux.conf'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
|
|
|
|
2020-01-12 01:28:41 +00:00
|
|
|
avrdude_exe_path = 'buildroot/share/vscode/avrdude_5.10_linux'
|
2018-05-26 01:26:48 +00:00
|
|
|
# source_path = env.get("PROJECTBUILD_DIR") + '/' + env.get("PIOENV") + '/firmware.hex'
|
2019-08-08 13:29:33 +00:00
|
|
|
source_path = '.pio/build/' + env.get("PIOENV") + '/firmware.hex'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
# upload_string = 'avrdude -p usb1286 -c avr109 -P ' + com_CDC + ' -U flash:w:' + source_path + ':i'
|
|
|
|
upload_string = avrdude_exe_path + ' -p usb1286 -c avr109 -P ' + com_CDC + ' -C ' + avrdude_conf_path + ' -U flash:w:' + source_path + ':i'
|
2018-05-19 22:39:26 +00:00
|
|
|
|
|
|
|
|
2018-05-26 01:26:48 +00:00
|
|
|
env.Replace(
|
|
|
|
UPLOADCMD = upload_string,
|
|
|
|
MAXIMUM_RAM_SIZE = 8192,
|
|
|
|
MAXIMUM_SIZE = 130048
|
|
|
|
)
|