Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
marlin-cli-build
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
marlin-cli-build
Commits
e2970500
Commit
e2970500
authored
Feb 17, 2017
by
Franco (nextime) Lanza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add scripts
parents
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
0 deletions
+42
-0
arduino-read
arduino-read
+10
-0
arduino-write
arduino-write
+10
-0
marlin-build
marlin-build
+11
-0
marlin-upload
marlin-upload
+11
-0
No files found.
arduino-read
0 → 100755
View file @
e2970500
#!/bin/bash
if
[[
$#
< 2
]]
;
then
echo
echo
"Usage:
$0
<serial_device> <filename>"
echo
exit
0
fi
avrdude
-C
arduino-nightly/hardware/tools/avr/etc/avrdude.conf
-v
-patmega2560
-cwiring
-U
flash:r:
"
$2
"
:r
-P
$1
-b115200
arduino-write
0 → 100755
View file @
e2970500
#!/bin/bash
if
[[
$#
< 2
]]
;
then
echo
echo
"Usage:
$0
<serial_device> <filename>"
echo
exit
0
fi
avrdude
-C
arduino-nightly/hardware/tools/avr/etc/avrdude.conf
-v
-patmega2560
-cwiring
-U
flash:w:
"
$2
"
:r
-P
$1
-b115200
marlin-build
0 → 100755
View file @
e2970500
#!/bin/bash
if
[[
$#
< 1
]]
;
then
echo
echo
"Usage:
$0
<file.ino>"
echo
exit
0
fi
arduino
--verify
--board
arduino:avr:mega256
"
${
1
}
"
marlin-upload
0 → 100755
View file @
e2970500
#!/bin/bash
if
[[
$#
< 2
]]
;
then
echo
echo
"Usage:
$0
<serial_device> <file.ino>"
echo
exit
0
fi
arduino
--upload
--board
arduino:avr:mega256
--port
$1
"
${
2
}
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment