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
docker run -p 8082:8082 -d api-gateway-test:1.0.0 --name api-gateway-test
2301_82000044/my-api-gateway
my-api-gateway-test/start.sh
Shell
mit
73
<script> export default { onLaunch: function() { console.log('App Launch') }, onShow: function() { console.log('App Show') }, onHide: function() { console.log('App Hide') } } </script> <style> /*每个页面公共css */ </style>
2301_82115348/p1
App.vue
Vue
unknown
254
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8" /> <script> var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)')) document.write( '<meta name="viewport" content="width=device-wi...
2301_82115348/p1
index.html
HTML
unknown
675
import App from './App' // #ifndef VUE3 import Vue from 'vue' import './uni.promisify.adaptor' Vue.config.productionTip = false App.mpType = 'app' const app = new Vue({ ...App }) app.$mount() // #endif // #ifdef VUE3 import { createSSRApp } from 'vue' export function createApp() { const app = createSSRApp(App) ...
2301_82115348/p1
main.js
JavaScript
unknown
352
<template> <view class="content"> <image class="logo" src="/static/logo.png"></image> <view class="text-area"> <text class="title">{{title}}</text> </view> </view> </template> <script> export default { data() { return { title: 'Hello' } }, onLoad() { }, methods: { } } </script> <s...
2301_82115348/p1
pages/index/index.vue
Vue
unknown
694
<template> <view> </view> </template> <script> export default { data() { return { } }, methods: { } } </script> <style> </style>
2301_82115348/p1
pages/machine-list/machine-list.vue
Vue
unknown
162
<template> <view class="container"> <view class="title">🌐 网络请求示例</view> <button type="primary" @click="getData">点击发送请求</button> <view class="result"> <text>{{ result }}</text> </view> </view> </template> <script> export default { data() { return { items: {}, result: '点击上方按钮获取数据' } }, ...
2301_82115348/p1
pages/uni-request/uni-request.vue
Vue
unknown
1,807
uni.addInterceptor({ returnValue (res) { if (!(!!res && (typeof res === "object" || typeof res === "function") && typeof res.then === "function")) { return res; } return new Promise((resolve, reject) => { res.then((res) => { if (!res) return resolve(res) return res[0] ? reject...
2301_82115348/p1
uni.promisify.adaptor.js
JavaScript
unknown
373
/** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* ...
2301_82115348/p1
uni.scss
SCSS
unknown
2,217
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/python-3/.devcontainer/base.Dockerfile # [Choice] Python version: 3, 3.9, 3.8, 3.7, 3.6 ARG VARIANT="3.9.0-buster" FROM python:${VARIANT} # [Option] Install Node.js ARG INSTALL_NODE="true" ARG NODE_VERSION="lts/...
2301_81045437/Marlin
.devcontainer/Dockerfile
Dockerfile
agpl-3.0
1,333
SCRIPTS_DIR := buildroot/share/scripts CONTAINER_RT_BIN := docker CONTAINER_RT_OPTS := --rm -v $(PWD):/code -v platformio-cache:/root/.platformio CONTAINER_IMAGE := marlin-dev UNIT_TEST_CONFIG ?= default help: @echo "Tasks for local development:" @echo "make marlin : Build marlin for the configure...
2301_81045437/Marlin
Makefile
Makefile
agpl-3.0
5,417
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/Configuration.h
C
agpl-3.0
137,040
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/Configuration_adv.h
C
agpl-3.0
190,621
# Marlin Firmware Arduino Project Makefile # # Makefile Based on: # Arduino 0011 Makefile # Arduino adaptation by mellis, eighthave, oli.keller # Marlin adaption by Daid # Marlin 2.0 support and RELOC_WORKAROUND by @marcio-ao # # This has been tested with Arduino 0022. # # This makefile allows you to build sketches fro...
2301_81045437/Marlin
Marlin/Makefile
Makefile
agpl-3.0
35,305
/*============================================================================== Marlin Firmware (c) 2011-2024 MarlinFirmware Portions of Marlin are (c) by their respective authors. All code complies with GPLv2 and/or GPLv3 ================================================================================ Gre...
2301_81045437/Marlin
Marlin/Marlin.ino
C++
agpl-3.0
2,100
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/Version.h
C
agpl-3.0
2,506
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/HAL.cpp
C++
agpl-3.0
6,016
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/HAL.h
C++
agpl-3.0
7,638
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/HAL_SPI.cpp
C++
agpl-3.0
7,058
/** * 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 the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/MarlinSPI.h
C
agpl-3.0
922
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/MarlinSerial.cpp
C++
agpl-3.0
22,907
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/MarlinSerial.h
C++
agpl-3.0
11,112
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/Servo.cpp
C++
agpl-3.0
8,736
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/ServoTimers.h
C
agpl-3.0
3,230
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/eeprom.cpp
C++
agpl-3.0
2,484
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/endstop_interrupts.h
C
agpl-3.0
13,497
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/fast_pwm.cpp
C++
agpl-3.0
9,997
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/fastio/fastio_1280.h
C
agpl-3.0
26,326
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/fastio/fastio_1281.h
C
agpl-3.0
16,559
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/fastio/fastio_168.h
C
agpl-3.0
7,925
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/fastio/fastio_644.h
C
agpl-3.0
12,767
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/fastio/fastio_AT90USB.h
C
agpl-3.0
15,840
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/fastio.cpp
C++
agpl-3.0
6,633
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/fastio.h
C
agpl-3.0
9,665
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/inc/Conditionals_LCD.h
C
agpl-3.0
927
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/inc/Conditionals_adv.h
C
agpl-3.0
875
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/inc/Conditionals_post.h
C
agpl-3.0
875
/** * Marlin 3D Printer Firmware * Copyright (c) 2024 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
Marlin/src/HAL/AVR/inc/Conditionals_type.h
C
agpl-3.0
875
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/inc/SanityCheck.h
C
agpl-3.0
4,239
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/math.h
C
agpl-3.0
3,530
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/pinsDebug.h
C
agpl-3.0
12,542
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/pinsDebug_Teensyduino.h
C
agpl-3.0
2,908
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/pinsDebug_plus_70.h
C
agpl-3.0
10,703
/** * 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
Marlin/src/HAL/AVR/registers.cpp
C++
agpl-3.0
41,918
/** * 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
Marlin/src/HAL/AVR/registers.h
C++
agpl-3.0
172,988
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/spi_pins.h
C
agpl-3.0
2,169
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/timers.h
C
agpl-3.0
12,156
/** * 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
Marlin/src/HAL/AVR/u8g/LCD_defines.h
C
agpl-3.0
1,059
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/AVR/u8g_com_HAL_AVR_sw_spi.cpp
C++
agpl-3.0
6,519
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/HAL.cpp
C++
agpl-3.0
5,941
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/HAL.h
C++
agpl-3.0
6,169
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/HAL_SPI.cpp
C++
agpl-3.0
32,026
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/InterruptVectors.cpp
C++
agpl-3.0
3,273
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/InterruptVectors.h
C
agpl-3.0
1,696
/** * 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 the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/MarlinSPI.h
C
agpl-3.0
922
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/MarlinSerial.cpp
C++
agpl-3.0
17,729
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/MarlinSerial.h
C++
agpl-3.0
6,042
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/MarlinSerialUSB.cpp
C++
agpl-3.0
4,002
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/MarlinSerialUSB.h
C
agpl-3.0
1,851
/** * 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 the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/MinSerial.cpp
C++
agpl-3.0
2,966
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/Servo.cpp
C++
agpl-3.0
6,934
/** * Copyright (c) 2013 Arduino LLC. All right reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later versio...
2301_81045437/Marlin
Marlin/src/HAL/DUE/ServoTimers.h
C
agpl-3.0
3,013
/** * 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 * * SAMD51 HAL developed by Giuliano Zaro (AKA GMagician) * * This program is free software: you can redistribu...
2301_81045437/Marlin
Marlin/src/HAL/DUE/Tone.cpp
C++
agpl-3.0
1,831
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/eeprom_flash.cpp
C++
agpl-3.0
34,089
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/eeprom_wired.cpp
C++
agpl-3.0
2,486
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/endstop_interrupts.h
C
agpl-3.0
3,179
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/fastio/G2_PWM.cpp
C++
agpl-3.0
9,272
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/fastio/G2_PWM.h
C
agpl-3.0
3,223
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/fastio/G2_pins.h
C
agpl-3.0
19,313
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/fastio.h
C
agpl-3.0
12,465
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/inc/Conditionals_LCD.h
C
agpl-3.0
875
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/inc/Conditionals_adv.h
C
agpl-3.0
875
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/inc/Conditionals_post.h
C
agpl-3.0
1,004
/** * Marlin 3D Printer Firmware * Copyright (c) 2024 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
Marlin/src/HAL/DUE/inc/Conditionals_type.h
C
agpl-3.0
875
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/inc/SanityCheck.h
C
agpl-3.0
3,745
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/pinsDebug.h
C
agpl-3.0
6,708
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/spi_pins.h
C
agpl-3.0
1,848
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/timers.cpp
C++
agpl-3.0
4,220
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/timers.h
C
agpl-3.0
4,623
/** * 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
Marlin/src/HAL/DUE/u8g/LCD_defines.h
C
agpl-3.0
1,408
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/u8g/u8g_com_HAL_DUE_shared_hw_spi.cpp
C++
agpl-3.0
4,509
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/u8g/u8g_com_HAL_DUE_st7920_sw_spi.cpp
C++
agpl-3.0
6,011
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/u8g/u8g_com_HAL_DUE_sw_spi.cpp
C++
agpl-3.0
5,255
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/u8g/u8g_com_HAL_DUE_sw_spi_shared.cpp
C++
agpl-3.0
3,924
/** * 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 and/or modify * it under the terms of the GNU General...
2301_81045437/Marlin
Marlin/src/HAL/DUE/u8g/u8g_com_HAL_DUE_sw_spi_shared.h
C
agpl-3.0
1,273
# # Set upload_command # # Windows: bossac.exe # Other: leave unchanged # import pioutil if pioutil.is_pio_build(): import platform current_OS = platform.system() if current_OS == 'Windows': Import("env") # Use bossac.exe on Windows env.Replace( UPLOADCMD="bossac --i...
2301_81045437/Marlin
Marlin/src/HAL/DUE/upload_extra_script.py
Python
agpl-3.0
401
/** * \file * * \brief Arduino Due/X Board Definition. * * Copyright (c) 2011-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are ...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/arduino_due_x.h
C
agpl-3.0
3,867
/** * \file * * \brief Commonly used includes, types and macros. * * Copyright (c) 2010-2016 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following condi...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/compiler.h
C
agpl-3.0
36,152
/** * \file * * \brief Memory access control configuration file. * * Copyright (c) 2012-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following condi...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/conf_access.h
C
agpl-3.0
4,236
/** * \file * * \brief SAM3X clock configuration. * * Copyright (c) 2011-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: ...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/conf_clock.h
C
agpl-3.0
4,029
/** * \file * * \brief USB configuration file * * Copyright (c) 2011-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * ...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/conf_usb.h
C
agpl-3.0
9,262
/***************************************************************************** * * \file * * \brief Abstraction layer for memory interfaces. * * This module contains the interfaces: * - MEM <-> USB; * - MEM <-> RAM; * - MEM <-> MEM. * * This module may be configured and expanded to support the followin...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/ctrl_access.c
C
agpl-3.0
13,229
/***************************************************************************** * * \file * * \brief Abstraction layer for memory interfaces. * * This module contains the interfaces: * - MEM <-> USB; * - MEM <-> RAM; * - MEM <-> MEM. * * This module may be configured and expanded to support the followin...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/ctrl_access.h
C
agpl-3.0
10,252
/** * \file * * \brief Chip-specific generic clock management. * * Copyright (c) 2011-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditi...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/genclk.h
C
agpl-3.0
7,575
/** * \file * * \brief Preprocessor macro repeating utils. * * Copyright (c) 2010-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions ...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/mrepeat.h
C
agpl-3.0
23,536
/** * \file * * \brief Chip-specific oscillator management functions. * * Copyright (c) 2011-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following ...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/osc.h
C
agpl-3.0
7,345
/** * \file * * \brief Chip-specific PLL definitions. * * Copyright (c) 2011-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are m...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/pll.h
C
agpl-3.0
7,731
/** * \file * * \brief Preprocessor utils. * * Copyright (c) 2010-2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/preprocessor.h
C
agpl-3.0
1,990
/** * \file * * \brief SCSI Block Commands * * This file contains definitions of some of the commands found in the * SCSI SBC-2 standard. * * Note that the SBC specification depends on several commands defined * by the SCSI Primary Commands (SPC) standard. Each version of the SBC * standard is meant to be use...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/sbc_protocol.h
C
agpl-3.0
5,808
/** * Interface from Atmel USB MSD to Marlin SD card */ #ifdef ARDUINO_ARCH_SAM #include "../../../inc/MarlinConfig.h" #if HAS_MEDIA #include "../../../sd/cardreader.h" extern "C" { #include "sd_mmc_spi_mem.h" } #define SD_MMC_BLOCK_SIZE 512 void sd_mmc_spi_mem_init() { } Ctrl_status sd_mmc_spi_test_unit_rea...
2301_81045437/Marlin
Marlin/src/HAL/DUE/usb/sd_mmc_spi_mem.cpp
C++
agpl-3.0
3,192