code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
EXTERN(__msp_init) EXTERN(__exc_reset) EXTERN(__exc_nmi) EXTERN(__exc_hardfault) EXTERN(__exc_memmanage) EXTERN(__exc_busfault) EXTERN(__exc_usagefault) EXTERN(__stm32reservedexception7) EXTERN(__stm32reservedexception8) EXTERN(__stm32reservedexception9) EXTERN(__stm32reservedexception10) EXTERN(__exc_svc) EXTERN(__exc...
2301_81045437/Marlin
buildroot/share/PlatformIO/variants/marlin_maple_MEEB_3DP/ld/vector_symbols.inc
C++
agpl-3.0
1,759
// API compatibility #include "variant.h"
2301_81045437/Marlin
buildroot/share/PlatformIO/variants/marlin_maple_MEEB_3DP/pins_arduino.h
C
agpl-3.0
42
#pragma once #define digitalPinToPort(P) ( PIN_MAP[P].gpio_device ) #define digitalPinToBitMask(P) ( BIT(PIN_MAP[P].gpio_bit) ) #define portOutputRegister(port) ( &(port->regs->ODR) ) #define portInputRegister(port) ( &(port->regs->IDR) ) #define portSetRegister(pin) ( &(PIN_MAP[pin].gpio_device...
2301_81045437/Marlin
buildroot/share/PlatformIO/variants/marlin_maple_MEEB_3DP/variant.h
C
agpl-3.0
736
/****************************************************************************** * The MIT License * * Copyright (c) 2010 Perry Hung. * Copyright (c) 2011, 2012 LeafLabs, LLC. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files ...
2301_81045437/Marlin
buildroot/share/PlatformIO/variants/marlin_maple_MEEB_3DP/wirish/boards.cpp
C++
agpl-3.0
7,127
/****************************************************************************** * The MIT License * * Copyright (c) 2012 LeafLabs, LLC. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Softwar...
2301_81045437/Marlin
buildroot/share/PlatformIO/variants/marlin_maple_MEEB_3DP/wirish/boards_setup.cpp
C++
agpl-3.0
4,063
/****************************************************************************** * The MIT License * * Copyright (c) 2011 LeafLabs, LLC. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Softwar...
2301_81045437/Marlin
buildroot/share/PlatformIO/variants/marlin_maple_MEEB_3DP/wirish/start.S
Unix Assembly
agpl-3.0
2,348
/****************************************************************************** * The MIT License * * Copyright (c) 2011 LeafLabs, LLC. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Softwar...
2301_81045437/Marlin
buildroot/share/PlatformIO/variants/marlin_maple_MEEB_3DP/wirish/start_c.c
C
agpl-3.0
3,261
/****************************************************************************** * The MIT License * * Copyright (c) 2010 Perry Hung. * Copyright (c) 2011, 2012 LeafLabs, LLC. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files ...
2301_81045437/Marlin
buildroot/share/PlatformIO/variants/marlin_maple_MEEB_3DP/wirish/syscalls.c
C
agpl-3.0
4,166
cmake_minimum_required(VERSION 3.5) #====================================================================# # Usage under Linux: # # # # From Marlin/buildroot/share/cmake folder: # ...
2301_81045437/Marlin
buildroot/share/cmake/CMakeLists.txt
CMake
agpl-3.0
10,073
#!/usr/bin/env bash mkdir -p icons-4 convert -size 48x36 -background "#080808" -quality 100 -sampling-factor 4:4:4 ./icons-svg/hotend_off.svg ./icons-4/001-ICON_HotendOff.jpg convert -size 48x36 -background "#080808" -quality 100 -sampling-factor 4:4:4 ./icons-svg/hotend_on.svg ./icons-4/002-IC...
2301_81045437/Marlin
buildroot/share/dwin/make_jpgs.sh
Shell
agpl-3.0
2,737
/** * Marlin 3D Printer Firmware * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] * * Based on Sprinter and grbl. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
buildroot/share/extras/file_header.h
C
agpl-3.0
887
/** * $(function) : Description pending * * $(javaparam) */
2301_81045437/Marlin
buildroot/share/extras/func_header.h
C
agpl-3.0
64
CFLAGS = -g -Wall #CFLAGS = -O4 -Wall SRC = bdf2u8g.c OBJ = $(SRC:.c=.o) bdf2u8g: $(OBJ) $(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o bdf2u8g.exe clean: -rm $(OBJ) bdf2u8g.exe test: ./bdf2u8g.exe -f 2 ../bdf/9x18.bdf u8g_aafont_9x18 u8g_aafont_9x18.c
2301_81045437/Marlin
buildroot/share/fonts/bdf2u8g/Makefile
Makefile
agpl-3.0
251
/* general font collections http://www.smashingmagazine.com/2007/11/08/40-excellent-freefonts-for-professional-design/ http://techmagazine.ws/most-popular-free-quality-fonts/ http://openfontlibrary.org/ bitmap font collections http://www.orgdot.com/aliasfonts/ (includes links) http://www.04.jp.o...
2301_81045437/Marlin
buildroot/share/fonts/bdf2u8g/bdf2u8g.c
C
agpl-3.0
35,571
# Generate a 'HZK' font file for the T5UIC1 DWIN LCD # from multiple bdf font files. # Note: the 16x16 glyphs are not produced # Author: Taylor Talkington # License: GPL import bdflib.reader import math def glyph_bits(size_x, size_y, font, glyph_ord): asc = font[b'FONT_ASCENT'] desc = font[b'FONT_DESCENT'] ...
2301_81045437/Marlin
buildroot/share/fonts/buildhzk.py
Python
agpl-3.0
2,109
#!/usr/bin/env bash ##################################################################### # genallfont.sh for Marlin # # This script generates font data for language headers # # Copyright 2015-2018 Yunhui Fu <yhfudev@gmail.com> # License: GPL/BSD ##################################################################### my...
2301_81045437/Marlin
buildroot/share/fonts/genallfont.sh
Shell
agpl-3.0
4,250
/** * @file genpages.c * @brief generate required font page files * @author Yunhui Fu (yhfudev@gmail.com) * @version 1.0 * @date 2015-02-19 * @copyright Yunhui Fu (2015) */ #include <stdio.h> #include <stdint.h> /* uint8_t */ #include <stdlib.h> /* size_t */ #include <string.h> #include <assert.h...
2301_81045437/Marlin
buildroot/share/fonts/genpages/genpages.c
C
agpl-3.0
4,088
/** * getline.c --- Based on... * * getdelim.c --- Implementation of replacement getdelim function. * Copyright (C) 1994, 1996, 1997, 1998, 2001, 2003, 2005 Free * Software Foundation, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Li...
2301_81045437/Marlin
buildroot/share/fonts/genpages/getline.c
C
agpl-3.0
3,091
#ifndef MYGETLINE_H #define MYGETLINE_H //#include "config.h" #if !HAVE_GETLINE #include <stdio.h> ssize_t getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp); #define getline(lineptr, n, stream) getdelim (lineptr, n, '\n', stream) #endif #endif // MYGETLINE_H
2301_81045437/Marlin
buildroot/share/fonts/genpages/getline.h
C
agpl-3.0
280
#!/usr/bin/env bash # # make_lang_na.sh # # Create non-accented language files given a list of accented language files. # which gsed >/dev/null || { echo "gsed is required for this script." ; exit 1 ; } which perl >/dev/null || { echo "perl is required for this script." ; exit 1 ; } # # Get language arguments # [ $# ...
2301_81045437/Marlin
buildroot/share/fonts/make_lang_na.sh
Shell
agpl-3.0
1,446
#!/usr/bin/env bash ##################################################################### # uxggenpages.sh for u8g # # This script will generate u8g c files for specified fonts # # Copyright 2015-2018 Yunhui Fu <yhfudev@gmail.com> # License: BSD ##################################################################### my...
2301_81045437/Marlin
buildroot/share/fonts/uxggenpages.sh
Shell
agpl-3.0
4,954
#!/usr/bin/env bash # # firstpush # # Push a branch to 'origin' and open the # commit log to watch Travis CI progress. # [[ $# == 0 ]] || { echo "usage: `basename $0`" 1>&2 ; exit 1; } MFINFO=$(mfinfo) || exit 1 IFS=' ' read -a INFO <<< "$MFINFO" FORK=${INFO[1]} REPO=${INFO[2]} BRANCH=${INFO[5]} git push --set-upstr...
2301_81045437/Marlin
buildroot/share/git/firstpush
Shell
agpl-3.0
595
#!/usr/bin/env bash # # ghpc (GitHub Push Current) # # - Push current branch to its remote. Try the following until it works: # - Plain 'git push' # - 'git push -f' # - Try the 'git push' command from the 'git push' error message # - Try adding '-f' to that command # yay() { echo "SUCCESS" ; } boo() { echo "FA...
2301_81045437/Marlin
buildroot/share/git/ghpc
Shell
agpl-3.0
1,324
#!/usr/bin/env bash # # ghtp (GitHub Transport Protocol) # # Set all remotes in the current repo to HTTPS or SSH connection. # Useful when switching environments, using public wifi, etc. # # Optionally, specify a particular remote to change. # GH_SSH="git@github\.com:" GH_HTTPS="https:\/\/github\.com\/" case "$1" in ...
2301_81045437/Marlin
buildroot/share/git/ghtp
Shell
agpl-3.0
1,107
#!/usr/bin/env bash # # mfadd user[:branch] [copyname] # # Add a remote and fetch it. Optionally copy a branch. # # Examples: # mfadd thefork # mfadd thefork:patch-1 # mfadd thefork:patch-1 the_patch_12345 # [[ $# > 0 && $# < 3 && $1 != "-h" && $1 != "--help" ]] || { echo "usage: `basename $0` user[:branch] [copyna...
2301_81045437/Marlin
buildroot/share/git/mfadd
Shell
agpl-3.0
907
#!/usr/bin/env bash # # mfclean # # Prune all your merged branches and any branches whose remotes are gone # Great way to clean up your branches after messing around a lot # AWK=$(which gawk || which awk) KEEP="RC|RCBugFix|dev|master|bugfix-1|bugfix-2" echo "Fetching latest upstream and origin..." git fetch upstream...
2301_81045437/Marlin
buildroot/share/git/mfclean
Shell
agpl-3.0
1,051
#!/usr/bin/env bash # # mfconfig init source dest # mfconfig manual source dest # # The MarlinFirmware/Configurations layout could be broken up into branches, # but this makes management more complicated and requires more commits to # perform the same operation, so this uses a single branch with subfolders. # # init - ...
2301_81045437/Marlin
buildroot/share/git/mfconfig
Shell
agpl-3.0
5,218
#!/usr/bin/env bash # # mfdoc # # Start Jekyll in watch mode to work on Marlin Documentation and preview locally # [[ $# == 0 ]] || { echo "Usage: `basename $0`" 1>&2 ; exit 1; } MFINFO=$(mfinfo "$@") || exit 1 IFS=' ' read -a INFO <<< "$MFINFO" ORG=${INFO[0]} REPO=${INFO[2]} BRANCH=${INFO[5]} [[ $ORG == "MarlinFirm...
2301_81045437/Marlin
buildroot/share/git/mfdoc
Shell
agpl-3.0
876
#!/usr/bin/env bash # # mffp [1|2] [ref] # # Push the given commit (or HEAD) upstream immediately. # By default: `git push upstream HEAD:bugfix-2.1.x` # usage() { echo "usage: `basename $0` [1|2] [ref]" 1>&2 ; } [[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage ; exit 1; } if [[ $1 == '1' || $1 == '2' ]]; then...
2301_81045437/Marlin
buildroot/share/git/mffp
Shell
agpl-3.0
667
#!/usr/bin/env bash # # mfhelp # cat <<THIS Marlin Firmware Commands: firstpush ... Push and set-upstream the current branch to 'origin' ghpc ........ Push the current branch to its upstream branch ghtp ........ Set the transfer protocol for all your remotes mfadd ....... Fetch a remote branch from any Marlin...
2301_81045437/Marlin
buildroot/share/git/mfhelp
Shell
agpl-3.0
1,842
#!/usr/bin/env bash # # mfinfo # # Print the following info about the working copy: # # - Remote (upstream) Org name (MarlinFirmware) # - Remote (origin) Org name (your Github username) # - Repo Name (Marlin, MarlinDocumentation) # - PR Target branch (e.g., bugfix-2.1.x) # - Branch Arg (the branch argument or...
2301_81045437/Marlin
buildroot/share/git/mfinfo
Shell
agpl-3.0
2,115
#!/usr/bin/env bash # # mfinit # # Create the upstream remote for a forked repository # [[ $# == 0 ]] || { echo "usage: `basename $0`" 1>&2 ; exit 1; } [[ -z $(git branch 2>/dev/null | grep ^* | sed 's/\* //g') ]] && { echo "No git repository here!" 1>&2 ; exit 1; } REPO=$(git remote get-url origin 2>/dev/null | sed...
2301_81045437/Marlin
buildroot/share/git/mfinit
Shell
agpl-3.0
567
#!/usr/bin/env bash # # mfnew # # Create a new branch from the default target with the given name # usage() { echo "usage: `basename $0` [1|2] [name]" 1>&2 ; } [[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage; exit 1; } MFINFO=$(mfinfo "$@") || exit 1 IFS=' ' read -a INFO <<< "$MFINFO" TARG=${INFO[3]} BRANCH=...
2301_81045437/Marlin
buildroot/share/git/mfnew
Shell
agpl-3.0
667
#!/usr/bin/env bash # # mfpr [1|2] # # Make a PR targeted to MarlinFirmware/[repo] # [[ $# < 2 && $1 != "-h" && $1 != "--help" ]] || { echo "usage: `basename $0` [1|2] [branch]" 1>&2 ; exit 1; } MFINFO=$(mfinfo "$@") || exit 1 IFS=' ' read -a INFO <<< "$MFINFO" ORG=${INFO[0]} FORK=${INFO[1]} REPO=${INFO[2]} TARG=${IN...
2301_81045437/Marlin
buildroot/share/git/mfpr
Shell
agpl-3.0
987
#!/usr/bin/env bash # # mfprep tag1 [tag2] # # Find commits in bugfix-2.1.x that are not yet in 2.1.x. # # Specify a version tag to start from, and optional version tag to end at. # For bugfix-2.1.x the tag will be prefixed by dev- to distinguish it from the version tag, # so at every release be sure to create a dev- t...
2301_81045437/Marlin
buildroot/share/git/mfprep
Shell
agpl-3.0
2,444
#!/usr/bin/env bash # # mfpub # # Use Jekyll to generate Marlin Documentation, which is then # git-pushed to Github to publish it to the live site. # This publishes the current branch, and doesn't force # changes to be pushed to the 'master' branch. Be sure to # push any permanent changes to 'master'. # [[ $# < 2 && $...
2301_81045437/Marlin
buildroot/share/git/mfpub
Shell
agpl-3.0
3,298
#!/usr/bin/env bash # # mfqp [1|2] # # - git add . # - git commit --amend # - git push -f # MFINFO=$(mfinfo "$@") || exit 1 IFS=' ' read -a INFO <<< "$MFINFO" REPO=${INFO[2]} TARG=${INFO[3]} CURR=${INFO[5]} IND=6 while [ $IND -lt ${#INFO[@]} ]; do ARG=${INFO[$IND]} case "$ARG" in -f|--force ) FORCE=1 ;; ...
2301_81045437/Marlin
buildroot/share/git/mfqp
Shell
agpl-3.0
682
#!/usr/bin/env bash # # mfrb # # Do "git rebase -i" against the repo's "target" branch # MFINFO=$(mfinfo "$@") || exit 1 IFS=' ' read -a INFO <<< "$MFINFO" TARG=${INFO[3]} CURR=${INFO[5]} IND=6 while [ $IND -lt ${#INFO[@]} ]; do ARG=${INFO[$IND]} case "$ARG" in -q|--quick ) QUICK=1 ;; -h|--help ) USAGE=1...
2301_81045437/Marlin
buildroot/share/git/mfrb
Shell
agpl-3.0
577
#!/usr/bin/env bash # # mfup # # - Fetch latest upstream and replace the PR Target branch with # - Rebase the (current or specified) branch on the PR Target # - Force-push the branch to 'origin' # [[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { echo "usage: `basename $0` [1|2] [branch]" 1>&2 ; exit 1; } MFINFO=$(mf...
2301_81045437/Marlin
buildroot/share/git/mfup
Shell
agpl-3.0
1,086
// Search pins usable for endstop-interrupts // Compile with the same build settings you'd use for Marlin. #if defined(ARDUINO_AVR_MEGA2560) || defined(ARDUINO_AVR_MEGA) #undef digitalPinToPCICR #define digitalPinToPCICR(p) ( ((p) >= 10 && (p) <= 15) || \ ((p) >= 50 &&...
2301_81045437/Marlin
buildroot/share/pin_interrupt_test/pin_interrupt_test.ino
C++
agpl-3.0
1,011
# # MarlinBinaryProtocol.py # Supporting Firmware upload via USB/Serial, saving to the attached media. # import serial import math import time from collections import deque import threading import sys import datetime import random try: import heatshrink2 as heatshrink heatshrink_exists = True except ImportError...
2301_81045437/Marlin
buildroot/share/scripts/MarlinBinaryProtocol.py
Python
agpl-3.0
15,838
/**************************************\ * * * OpenSCAD Mesh Display * * by Thinkyhead - April 2017 * * * * Copy the grid output from Marlin, * * paste below as shown, and use * * OpenSCAD to see a vis...
2301_81045437/Marlin
buildroot/share/scripts/MarlinMesh.scad
OpenSCAD
agpl-3.0
8,682
#!/usr/bin/env python from __future__ import print_function from __future__ import division """ Generate the stepper delay lookup table for Marlin firmware. """ import argparse __author__ = "Ben Gamari <bgamari@gmail.com>" __copyright__ = "Copyright 2012, Ben Gamari" __license__ = "GPL" parser = argparse.ArgumentP...
2301_81045437/Marlin
buildroot/share/scripts/createSpeedLookupTable.py
Python
agpl-3.0
1,700
#!/usr/bin/env python """Thermistor Value Lookup Table Generator Generates lookup to temperature values for use in a microcontroller in C format based on: https://en.wikipedia.org/wiki/Steinhart-Hart_equation The main use is for Arduino programs that read data from the circuit board described here: https://reprap.org...
2301_81045437/Marlin
buildroot/share/scripts/createTemperatureLookupMarlin.py
Python
agpl-3.0
6,286
#!/usr/bin/env bash # # findMissingTranslations.sh # # Locate all language strings needing an update based on English # # Usage: findMissingTranslations.sh [language codes] # # If no language codes are specified then all languages will be checked # langname() { case "$1" in an ) echo "Aragonese" ;; ...
2301_81045437/Marlin
buildroot/share/scripts/findMissingTranslations.sh
Shell
agpl-3.0
3,804
#!/usr/bin/env python # This file is for preprocessing G-code and the new G29 Auto bed leveling from Marlin # It will analyze the first 2 layers and return the maximum size for this part # Then it will be replaced with g29_keyword = ';MarlinG29Script' with the new G29 LRFB. # The new file will be created in the same f...
2301_81045437/Marlin
buildroot/share/scripts/g29_auto.py
Python
agpl-3.0
4,888
#!/usr/bin/env python3 # # Marlin 3D Printer Firmware # Copyright (c) 2021 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] # # Based on Sprinter and grbl. # Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm # # This program is free software: you can redistribute it and/or modify # it under the terms of th...
2301_81045437/Marlin
buildroot/share/scripts/gen-tft-image.py
Python
agpl-3.0
2,242
#!/usr/bin/env python """ Extract the builds used in Github CI, so that we can run them locally """ import yaml # Set the yaml file to parse yaml_file = '.github/workflows/ci-build-tests.yml' # Parse the yaml file, and load it into a dictionary (github_configuration) with open(yaml_file) as f: github_configuratio...
2301_81045437/Marlin
buildroot/share/scripts/get_test_targets.py
Python
agpl-3.0
474
#!/usr/bin/env python3 ''' languageExport.py Export LCD language strings to CSV files for easier translation. Use importTranslations.py to import CSV into the language files. ''' import re from pathlib import Path from languageUtil import namebyid LANGHOME = "Marlin/src/lcd/language" # Write multiple sheets if tru...
2301_81045437/Marlin
buildroot/share/scripts/languageExport.py
Python
agpl-3.0
5,334
#!/usr/bin/env python3 """ languageImport.py Import LCD language strings from a CSV file or Google Sheets and write Marlin LCD language files based on the data. Use languageExport.py to export CSV from the language files. Google Sheets Link: https://docs.google.com/spreadsheets/d/12yiy-kS84ajKFm7oQIrC4CF8ZWeu9pAR4zr...
2301_81045437/Marlin
buildroot/share/scripts/languageImport.py
Python
agpl-3.0
8,140
#!/usr/bin/env python3 # # marlang.py # # A dictionary to contain language names LANGNAME = { 'an': "Aragonese", 'bg': "Bulgarian", 'ca': "Catalan", 'cz': "Czech", 'da': "Danish", 'de': "German", 'el': "Greek", 'el_CY': "Greek (Cyprus)", 'el_gr': "Greek (Greece)", 'en': "English", '...
2301_81045437/Marlin
buildroot/share/scripts/languageUtil.py
Python
agpl-3.0
1,001
#!/usr/bin/env python3 # # Formatter script for pins_MYPINS.h files # # Usage: pinsformat.py [infile] [outfile] # # With no parameters convert STDIN to STDOUT # import sys, re do_log = False def logmsg(msg, line): if do_log: print(msg, line) col_comment = 50 # String lpad / rpad def lpad(astr, fill, c=' '): ...
2301_81045437/Marlin
buildroot/share/scripts/pinsformat.py
Python
agpl-3.0
8,515
#!/usr/bin/env python3 # # Utility to compress Marlin RGB565 TFT data to RLE16 format. # Reads the existing Marlin RGB565 cpp file and generates a new file with the additional RLE16 data. # # Usage: rle16_compress_cpp_image_data.py INPUT_FILE.cpp OUTPUT_FILE.cpp # import sys,struct import re def addCompressedData(inpu...
2301_81045437/Marlin
buildroot/share/scripts/rle16_compress_cpp_image_data.py
Python
agpl-3.0
4,887
#!/usr/bin/env python3 # # Bitwise RLE compress a Marlin mono DOGM bitmap. # Input: An existing Marlin Marlin mono DOGM bitmap .cpp or .h file. # Output: A new file with the original and compressed data. # # Usage: rle_compress_bitmap.py INPUT_FILE OUTPUT_FILE # import sys,struct import re def addCompressedData(input_...
2301_81045437/Marlin
buildroot/share/scripts/rle_compress_bitmap.py
Python
agpl-3.0
6,780
import argparse import sys import os import time import random import serial Import("env") import MarlinBinaryProtocol #-----------------# # Upload Callback # #-----------------# def Upload(source, target, env): #-------# # Debug # #-------# Debug = False # Set to True to enable scrip...
2301_81045437/Marlin
buildroot/share/scripts/upload.py
Python
agpl-3.0
14,622
; SYNTAX TEST "G-code.sublime-syntax" ; This is a G-code comment ;^comment G1 X100 Y100 ; Move to 100,100 ;^entity.command.gcode ; ^keyword.param.gcode ; ^constant.numeric.param.gcode ; ^comment T0 (This is a comment) S12 ;^entity.command.gcode ; ^punctuation.paren.comment.open ; ^paren.comment.gc...
2301_81045437/Marlin
buildroot/share/sublime/RepRapTools/syntax_test_G-code.gcode
G-code
agpl-3.0
3,320
#!/usr/bin/env python ####################################### # # Marlin 3D Printer Firmware # Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] # # Based on Sprinter and grbl. # Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm # # This program is free software: you can redistribute it a...
2301_81045437/Marlin
buildroot/share/vscode/auto_build.py
Python
agpl-3.0
45,507
#!/usr/bin/env python # # 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 CO...
2301_81045437/Marlin
buildroot/share/vscode/create_custom_upload_command_CDC.py
Python
agpl-3.0
4,989
# # 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 ...
2301_81045437/Marlin
buildroot/share/vscode/create_custom_upload_command_DFU.py
Python
agpl-3.0
1,359
; ; M808 Repeat Marker Test ; M808 L3 ; Marker at 54 M118 Outer Loop M300 S220 P100 M808 L5 ; Marker at 111 M118 Inner Loop M300 S110 P100 M808 M808
2301_81045437/Marlin
buildroot/test-gcode/M808-loops.gcode
G-code
agpl-3.0
154
#!/usr/bin/env bash # # Build tests for STM32F1 ARMED # # exit on first failure set -e # # Build with the default configurations # restore_configs use_example_configs ArmEd opt_set X_DRIVER_TYPE TMC2130 Y_DRIVER_TYPE TMC2208 opt_enable LASER_SYNCHRONOUS_M106_M107 exec_test $1 $2 "ArmEd Example Configuration with mixe...
2301_81045437/Marlin
buildroot/tests/ARMED
Shell
agpl-3.0
368
#!/usr/bin/env bash # # Build tests for STM32F407VGT6 BigTreeTech BTT002 V1.0 # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_BTT_BTT002_V1_0 \ SERIAL_PORT 1 \ X_DRIVER_TYPE TMC2209 Y_DRIVER_TYPE TMC2130 opt_enable SENSORLESS_HOMIN...
2301_81045437/Marlin
buildroot/tests/BIGTREE_BTT002
Shell
agpl-3.0
671
#!/usr/bin/env bash # # Build tests for BigTreeTech GTR 1.0 # # exit on first failure set -e restore_configs opt_set MOTHERBOARD BOARD_BTT_GTR_V1_0 SERIAL_PORT -1 \ EXTRUDERS 8 TEMP_SENSOR_1 1 TEMP_SENSOR_2 1 TEMP_SENSOR_3 1 TEMP_SENSOR_4 1 TEMP_SENSOR_5 1 TEMP_SENSOR_6 1 TEMP_SENSOR_7 1 # Not necessary to en...
2301_81045437/Marlin
buildroot/tests/BIGTREE_GTR_V1_0
Shell
agpl-3.0
2,902
#!/usr/bin/env bash # # Build tests for BigTreeTech GTR 1.0 # # exit on first failure set -e restore_configs opt_set MOTHERBOARD BOARD_BTT_GTR_V1_0 SERIAL_PORT 3 \ EXTRUDERS 8 TEMP_SENSOR_1 1 TEMP_SENSOR_2 1 TEMP_SENSOR_3 1 TEMP_SENSOR_4 1 TEMP_SENSOR_5 1 TEMP_SENSOR_6 1 TEMP_SENSOR_7 1 opt_enable SDSUPPORT U...
2301_81045437/Marlin
buildroot/tests/BIGTREE_GTR_V1_0_usb_flash_drive
Shell
agpl-3.0
1,212
#!/usr/bin/env bash # # Build tests for STM32F407ZG BigTreeTech SKR Pro # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_BTT_SKR_PRO_V1_1 SERIAL_PORT 1 exec_test $1 $2 "BigTreeTech SKR Pro | Default Configuration" "$3" restore_configs opt_set MOTH...
2301_81045437/Marlin
buildroot/tests/BIGTREE_SKR_PRO
Shell
agpl-3.0
1,169
#!/usr/bin/env bash # # Build tests for BTT_SKR_SE_BX # # exit on first failure set -e # # Build with the default configurations # use_example_configs BIQU/BX exec_test $1 $2 "BIQU/BX" "$3" # clean up restore_configs
2301_81045437/Marlin
buildroot/tests/BTT_SKR_SE_BX
Shell
agpl-3.0
220
#!/usr/bin/env bash # # Build tests for DUE (Atmel SAM3X8E ARM Cortex-M3) # # exit on first failure set -e restore_configs opt_set MOTHERBOARD BOARD_RAMPS4DUE_EFB \ LCD_LANGUAGE bg \ TEMP_SENSOR_0 -2 TEMP_SENSOR_BED 2 \ GRID_MAX_POINTS_X 16 \ E0_AUTO_FAN_PIN 8 FANMUX0_PIN 53 EXTRUDER_A...
2301_81045437/Marlin
buildroot/tests/DUE
Shell
agpl-3.0
2,615
#!/usr/bin/env bash # # Build tests for DUE (Atmel SAM3X8E ARM Cortex-M3) # # exit on first failure set -e # # Test Archim 1 # use_example_configs UltiMachine/Archim1 exec_test $1 $2 "Archim 1 base configuration" "$3" # # Test Archim 2 # use_example_configs UltiMachine/Archim2 opt_enable USB_FLASH_DRIVE_SUPPORT exec...
2301_81045437/Marlin
buildroot/tests/DUE_archim
Shell
agpl-3.0
384
#!/usr/bin/env bash # # Build tests for FLYF407ZG # # exit on first failure set -e # Build examples restore_configs opt_set MOTHERBOARD BOARD_FLYF407ZG SERIAL_PORT -1 X_DRIVER_TYPE TMC2208 Y_DRIVER_TYPE TMC2130 exec_test $1 $2 "FLYF407ZG Default Config with mixed TMC Drivers" "$3" # cleanup restore_configs
2301_81045437/Marlin
buildroot/tests/FLYF407ZG
Shell
agpl-3.0
311
#!/usr/bin/env bash # # Build tests for AVR ATmega FYSETC F6 1.3 # # exit on first failure set -e # # Build with the default config plus DGUS_LCD_UI FYSETC # restore_configs opt_set MOTHERBOARD BOARD_FYSETC_F6_13 LCD_SERIAL_PORT 1 DGUS_LCD_UI FYSETC exec_test $1 $2 "DGUS (FYSETC)" "$3" # # Test DGUS_LCD_UI RELOADED ...
2301_81045437/Marlin
buildroot/tests/FYSETC_F6
Shell
agpl-3.0
2,964
#!/usr/bin/env bash # # Build tests for FYSETC_S6 # # exit on first failure set -e # Build examples restore_configs use_example_configs FYSETC/S6 opt_enable MEATPACK_ON_SERIAL_PORT_1 opt_set Y_DRIVER_TYPE TMC2209 Z_DRIVER_TYPE TMC2130 exec_test $1 $2 "FYSETC S6 Example" "$3" # # Build with FTDI Eve Touch UI and some...
2301_81045437/Marlin
buildroot/tests/FYSETC_S6
Shell
agpl-3.0
835
#!/usr/bin/env bash # # Build tests for HC32F460C_aquila_101 # # exit on first failure set -e restore_configs opt_set MOTHERBOARD BOARD_AQUILA_V101 SERIAL_PORT 1 opt_enable EEPROM_SETTINGS SDSUPPORT EMERGENCY_PARSER exec_test $1 $2 "Default Configuration with Fallback SD EEPROM" "$3" # cleanup restore_configs
2301_81045437/Marlin
buildroot/tests/HC32F460C_aquila_101
Shell
agpl-3.0
314
#!/usr/bin/env bash # # Build tests for STM32F407ZG I3DBEEZ9 Board # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_I3DBEEZ9_V1 SERIAL_PORT 1 exec_test $1 $2 "I3DBEE Z9 Board | Default Configuration" "$3" restore_configs opt_set MOTHERBOARD BOARD_...
2301_81045437/Marlin
buildroot/tests/I3DBEEZ9_V1
Shell
agpl-3.0
1,137
#!/usr/bin/env bash # # Build tests for LERDGEK environment # # exit on first failure set -e # # Build with the typical configuration # restore_configs opt_set MOTHERBOARD BOARD_LERDGE_K SERIAL_PORT 1 opt_enable TFT_GENERIC TFT_INTERFACE_FSMC TFT_COLOR_UI COMPACT_MARLIN_BOOT_LOGO exec_test $1 $2 "LERDGE K with Generi...
2301_81045437/Marlin
buildroot/tests/LERDGEK
Shell
agpl-3.0
378
#!/usr/bin/env bash # # Build tests for LERDGEX environment # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_LERDGE_X SERIAL_PORT 1 exec_test $1 $2 "LERDGE X with Default Configuration" "$3" # clean up restore_configs
2301_81045437/Marlin
buildroot/tests/LERDGEX
Shell
agpl-3.0
291
#!/usr/bin/env bash # # Build tests for LPC1768 (NXP ARM Cortex-M3) # # exit on first failure set -e # # Build with the default configurations # #restore_configs #opt_set MOTHERBOARD BOARD_RAMPS_14_RE_ARM_EFB #exec_test $1 $2 "Default Configuration" "$3" restore_configs opt_set MOTHERBOARD BOARD_RAMPS_14_RE_ARM_EFB ...
2301_81045437/Marlin
buildroot/tests/LPC1768
Shell
agpl-3.0
3,345
#!/usr/bin/env bash # # Build tests for LPC1769 (NXP ARM Cortex-M3) # # exit on first failure set -e # # Build with the default configurations # use_example_configs Azteeg/X5GT exec_test $1 $2 "Azteeg X5GT Example Configuration" "$3" restore_configs opt_set MOTHERBOARD BOARD_SMOOTHIEBOARD \ EXTRUDERS 2 TEMP_...
2301_81045437/Marlin
buildroot/tests/LPC1769
Shell
agpl-3.0
3,642
#!/usr/bin/env bash # # Build tests for NUCLEO_F767ZI # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_NUCLEO_F767ZI SERIAL_PORT -1 X_DRIVER_TYPE TMC2209 Y_DRIVER_TYPE TMC2208 opt_enable BLTOUCH Z_SAFE_HOMING REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONT...
2301_81045437/Marlin
buildroot/tests/NUCLEO_F767ZI
Shell
agpl-3.0
440
#!/usr/bin/env bash # # Build tests for Opulo_Lumen_REV3 # # exit on first failure set -e use_example_configs Opulo/Lumen_REV3 opt_disable TMC_DEBUG exec_test $1 $2 "Opulo Lumen REV3 Pick-and-Place" "$3" # cleanup restore_configs
2301_81045437/Marlin
buildroot/tests/Opulo_Lumen_REV3
Shell
agpl-3.0
233
#!/usr/bin/env bash # # Build tests for PANDA_PI_V29 # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_PANDA_PI_V29 SERIAL_PORT -1 \ Z_CLEARANCE_DEPLOY_PROBE 0 Z_CLEARANCE_BETWEEN_PROBES 1 Z_CLEARANCE_MULTI_PROBE 1 opt_enable BD_SENSOR AUTO_...
2301_81045437/Marlin
buildroot/tests/PANDA_PI_V29
Shell
agpl-3.0
453
#!/usr/bin/env bash # # Build tests for REMRAM_V1 # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_REMRAM_V1 opt_set SERIAL_PORT 1 exec_test $1 $2 "Default Configuration" "$3" # clean up restore_configs
2301_81045437/Marlin
buildroot/tests/REMRAM_V1
Shell
agpl-3.0
276
#!/usr/bin/env bash # # Build tests for SAMD21 (Minitronics 2.0) # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_MINITRONICS20 SERIAL_PORT -1 \ TEMP_SENSOR_0 11 TEMP_SENSOR_BED 11 \ X_DRIVER_TYPE DRV8825 Y_DRIVER_TYPE DRV8825 Z_DRI...
2301_81045437/Marlin
buildroot/tests/SAMD21_minitronics20
Shell
agpl-3.0
1,326
#!/usr/bin/env bash # # Build tests for Adafruit Grand Central M4 (ATMEL ARM Cortex-M4) # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_AGCM4_RAMPS_144 SERIAL_PORT -1 \ TEMP_SENSOR_0 11 TEMP_SENSOR_BED 11 \ X_DRIVER_TYPE TMC2209 Y_...
2301_81045437/Marlin
buildroot/tests/SAMD51_grandcentral_m4
Shell
agpl-3.0
1,586
#!/usr/bin/env bash # # Build tests for STM32F070CB Malyan M200 v2 # # exit on first failure set -e restore_configs opt_set MOTHERBOARD BOARD_MALYAN_M200_V2 SERIAL_PORT -1 exec_test $1 $2 "Malyan M200 v2 Default Config" "$3" # cleanup restore_configs
2301_81045437/Marlin
buildroot/tests/STM32F070CB_malyan
Shell
agpl-3.0
254
#!/usr/bin/env bash # # Build tests for STM32F070RB Malyan M200 v2 # # exit on first failure set -e restore_configs opt_set MOTHERBOARD BOARD_MALYAN_M200_V2 opt_set SERIAL_PORT -1 exec_test $1 $2 "Malyan M200 v2 Default Config" "$3" # cleanup restore_configs
2301_81045437/Marlin
buildroot/tests/STM32F070RB_malyan
Shell
agpl-3.0
262
#!/usr/bin/env bash # # Build tests for STM32F103CB Malyan M200 # # exit on first failure set -e use_example_configs Malyan/M200 exec_test $1 $2 "Malyan M200" "$3" # cleanup restore_configs
2301_81045437/Marlin
buildroot/tests/STM32F103CB_malyan
Shell
agpl-3.0
193
#!/usr/bin/env bash # # Build tests for STM32F103RC_btt (BigTreeTech SKR Mini E3) # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V1_0 SERIAL_PORT 1 SERIAL_PORT_2 -1 \ X_DRIVER_TYPE TMC2209 Y_DRIVER_TYPE TMC2209 Z_DRIVER_TY...
2301_81045437/Marlin
buildroot/tests/STM32F103RC_btt
Shell
agpl-3.0
591
#!/usr/bin/env bash # # Build tests for STM32F103RC BigTreeTech (SKR Mini v1.1) # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_BTT_SKR_MINI_V1_1 SERIAL_PORT 1 SERIAL_PORT_2 -1 TEMP_SENSOR_SOC 1 exec_test $1 $2 "BigTreeTech SKR Mini v1.1 - SOC Tem...
2301_81045437/Marlin
buildroot/tests/STM32F103RC_btt_USB
Shell
agpl-3.0
363
#!/usr/bin/env bash # # Build tests for STM32F103RC BigTreeTech (SKR Mini v1.1) with LibMaple STM32F1 HAL # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_BTT_SKR_MINI_V1_1 SERIAL_PORT 1 SERIAL_PORT_2 -1 BAUDRATE_2 115200 exec_test $1 $2 "BigTreeTe...
2301_81045437/Marlin
buildroot/tests/STM32F103RC_btt_USB_maple
Shell
agpl-3.0
393
#!/usr/bin/env bash # # Build tests for STM32F103RC BigTreeTech (SKR Mini E3) with LibMaple STM32F1 HAL # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V1_0 SERIAL_PORT 1 SERIAL_PORT_2 -1 \ X_DRIVER_TYPE TMC2209 Y_DRIVER_TY...
2301_81045437/Marlin
buildroot/tests/STM32F103RC_btt_maple
Shell
agpl-3.0
533
#!/usr/bin/env bash # # Build tests for STM32F103RC_fysetc # # exit on first failure set -e # # Build with the default configurations # use_example_configs "Creality/Ender-3/FYSETC Cheetah 1.2/BLTouch" exec_test $1 $2 "Ender-3 with Cheetah 1.2 | BLTouch" "$3" # clean up restore_configs
2301_81045437/Marlin
buildroot/tests/STM32F103RC_fysetc
Shell
agpl-3.0
290
#!/usr/bin/env bash # # Build tests for STM32F103RC_fysetc_maple # # exit on first failure set -e # # Build with the default configurations # use_example_configs "Creality/Ender-3/FYSETC Cheetah 1.2/base" exec_test $1 $2 "Maple build of Cheetah 1.2 Configuration" "$3" # clean up restore_configs
2301_81045437/Marlin
buildroot/tests/STM32F103RC_fysetc_maple
Shell
agpl-3.0
299
#!/usr/bin/env bash # # Build tests for STM32F103RC MEEB_3DP (ccrobot-online.com) # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_CCROBOT_MEEB_3DP SERIAL_PORT 1 SERIAL_PORT_2 -1 \ X_DRIVER_TYPE TMC2208 Y_DRIVER_TYPE TMC2208 Z_DRIVER_TYPE T...
2301_81045437/Marlin
buildroot/tests/STM32F103RC_meeb_maple
Shell
agpl-3.0
448
#!/usr/bin/env bash # # Build tests for STM32F103RE # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_STM32F103RE SERIAL_PORT -1 EXTRUDERS 2 \ NOZZLE_CLEAN_START_POINT "{ { 10, 10, 3 } }" \ NOZZLE_CLEAN_END_POINT "{ { 10, 20, 3 } }...
2301_81045437/Marlin
buildroot/tests/STM32F103RE
Shell
agpl-3.0
694
#!/usr/bin/env bash # # Build tests for STM32F103RE BigTreeTech (SKR E3 DIP v1.0) # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_BTT_SKR_E3_DIP \ SERIAL_PORT 1 SERIAL_PORT_2 -1 \ X_DRIVER_TYPE TMC2209 Y_DRIVER_TYPE TMC2130 opt_ena...
2301_81045437/Marlin
buildroot/tests/STM32F103RE_btt
Shell
agpl-3.0
425
#!/usr/bin/env bash # # Build tests for STM32F103RE BigTreeTech (SKR E3 DIP v1.0) # # exit on first failure set -e # # Build with the default configurations # restore_configs opt_set MOTHERBOARD BOARD_BTT_SKR_E3_DIP SERIAL_PORT 1 SERIAL_PORT_2 -1 opt_enable SDSUPPORT EMERGENCY_PARSER exec_test $1 $2 "BigTreeTech SKR ...
2301_81045437/Marlin
buildroot/tests/STM32F103RE_btt_USB
Shell
agpl-3.0
888
#!/usr/bin/env bash # # Build tests for STM32F103RE_creality # # exit on first failure set -e # # Build with configs included in the PR # use_example_configs "Creality/Ender-3 V2/CrealityV422/CrealityUI" opt_enable MARLIN_DEV_MODE BUFFER_MONITORING BLTOUCH AUTO_BED_LEVELING_BILINEAR Z_SAFE_HOMING exec_test $1 $2 "End...
2301_81045437/Marlin
buildroot/tests/STM32F103RE_creality
Shell
agpl-3.0
2,542
#!/usr/bin/env bash # # Build tests for STM32F103VE_ZM3E4V2_USB # # exit on first failure set -e restore_configs opt_set MOTHERBOARD BOARD_ZONESTAR_ZM3E4V2 SERIAL_PORT 1 exec_test $1 $2 "Zonestar ZM3E4 V2.0" "$3" # cleanup restore_configs
2301_81045437/Marlin
buildroot/tests/STM32F103VE_ZM3E4V2_USB_maple
Shell
agpl-3.0
242
#!/usr/bin/env bash # # Build tests for STM32F103VET6 # # exit on first failure set -e use_example_configs Alfawise/U20 opt_enable BAUD_RATE_GCODE exec_test $1 $2 "CLASSIC_UI U20 config" "$3" use_example_configs Alfawise/U20 opt_enable BAUD_RATE_GCODE TFT_COLOR_UI opt_disable TFT_CLASSIC_UI CUSTOM_STATUS_SCREEN_IMAG...
2301_81045437/Marlin
buildroot/tests/STM32F103VE_longer
Shell
agpl-3.0
498
#!/usr/bin/env bash # # Build tests for STM32F103VET6 (using maple STM32F1 framework) # # exit on first failure set -e use_example_configs Alfawise/U20 opt_enable BAUD_RATE_GCODE exec_test $1 $2 "Maple - Alfawise U20 - CLASSIC_UI" "$3" use_example_configs Alfawise/U20 opt_enable BAUD_RATE_GCODE TFT_COLOR_UI opt_disa...
2301_81045437/Marlin
buildroot/tests/STM32F103VE_longer_maple
Shell
agpl-3.0
566