Skip to content

Commit 63e45e7

Browse files
author
Stefan Hechenberger
committed
new working avrdude bundled into binary
1 parent 5d7c7af commit 63e45e7

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

backend/flash.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ def flash_upload(serial_port=conf['serial_port'], resources_dir=conf['rootdir'],
3535
AVRDUDECONFIG = os.path.join(resources_dir, 'firmware', "tools_win", "avrdude.conf")
3636

3737
elif sys.platform == "linux" or sys.platform == "linux2": #Linux
38-
AVRDUDEAPP = os.path.join(resources_dir, "/usr/bin/avrdude")
39-
AVRDUDECONFIG = os.path.join(resources_dir, "/etc/avrdude.conf")
38+
# AVRDUDEAPP = os.path.join(resources_dir, "/usr/bin/avrdude")
39+
# AVRDUDECONFIG = os.path.join(resources_dir, "/etc/avrdude.conf")
4040
# AVRDUDEAPP = os.path.join(resources_dir, 'firmware', "tools_linux", "avrdude64")
41-
# AVRDUDECONFIG = os.path.join(resources_dir, 'firmware', "tools_linux", "avrdude.conf")
41+
AVRDUDEAPP = os.path.join(resources_dir, 'firmware', "tools_linux", "avrdude")
42+
AVRDUDECONFIG = os.path.join(resources_dir, 'firmware', "tools_linux", "avrdude.conf")
4243
# chmod +x
4344
# st = os.stat(AVRDUDEAPP)
4445
# os.chmod(AVRDUDEAPP, st.st_mode | stat.S_IEXEC)

firmware/tools_linux/avrdude

-270 KB
Binary file not shown.

firmware/tools_linux/avrdude64

-938 KB
Binary file not shown.

0 commit comments

Comments
 (0)