-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a memory card image to "package" the upgrade. Includes supporting…
… files
- Loading branch information
1 parent
74d1133
commit 47d028d
Showing
51 changed files
with
2,879,046 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
/*.map | ||
/*.otx | ||
/*.elf | ||
/*.zip | ||
/build/ | ||
/build/** | ||
/Marlin/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# uSDCard - | ||
|
||
PROJECT = mpmd_marlin_1.1.x-uSDCard | ||
VERSION = 00 | ||
RELEASE = 01 | ||
|
||
MPMD_MARLIN = mpmd_marlin_1.1.x-119r??-05Alimit.bin | ||
|
||
# use the path to the Makefile as our reference | ||
ZD := $(dir $(realpath $(lastword $(MAKEFILE_LIST)))) | ||
|
||
# firmware to include | ||
FIRMWARE := $(realpath ${ZD}..)/${MPMD_MARLIN} | ||
VERSION := **_$(basename $(notdir $(wildcard ${FIRMWARE})))_** | ||
|
||
# root directory of card image | ||
CONTENTS = ${ZD}contents | ||
|
||
.PHONY : all clean distclean card deploy | ||
|
||
card : distclean | ||
# # create gcode utilities | ||
${ZD}util-setup-gcode.sh | ||
# # copy models | ||
mkdir -p ${CONTENTS}/models | ||
cp ${ZD}models/*.stl ${CONTENTS}/models/ | ||
cp ${ZD}models/*.gcode ${CONTENTS}/ | ||
# # files overwritten when "zipped" | ||
cp README.md ${CONTENTS}/ | ||
touch ${CONTENTS}/firmware.bin | ||
touch ${CONTENTS}/fcupdate.flg | ||
|
||
all : card deploy | ||
|
||
deploy : ${ZD}${PROJECT}.zip | ||
mv $< .. | ||
|
||
${ZD}${PROJECT}.zip : ${CONTENTS} ${FIRMWARE} README.md | ||
sed -i '1s/^/${VERSION}\n/' $</README.md | ||
cp ${FIRMWARE} $</firmware.bin | ||
rm -f $@ | ||
cd $^ && zip -r $@ . | ||
|
||
${CONTENTS} : card | ||
|
||
distclean : clean | ||
rm -fR ${CONTENTS} | ||
|
||
clean : | ||
rm -f .*~ *~ *.o *.d *.a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 3D PRINTABLE MODELS | ||
|
||
### Monoprice Cat _(original with alternate start gcode)_ | ||
* monoprice_cat.gcode | ||
|
||
### (#3DBenchy)[https://www.thingiverse.com/thing:763622] | ||
* 3DBenchy.stl | ||
* 3DBenchy.gcode | ||
|
||
### (maneki-neko -money cat- by bs3)[https://www.thingiverse.com/thing:923108] | ||
* money_cat.stl | ||
* money_cat.gcode | ||
* money_cat_fill.stl | ||
* money_cat_fill.gcode | ||
|
||
### (Treefrog by MorenaP)[https://www.thingiverse.com/thing:18479] | ||
* treefrog_45_cut.stl | ||
* treefreg_45_cut.gcode |
Oops, something went wrong.