Procházet zdrojové kódy

Tmp copy before merge

Erik vd Zalm před 11 roky
rodič
revize
e48dfcc2b3
2 změnil soubory, kde provedl 1870 přidání a 5 odebrání
  1. 1834
    5
      Marlin/Marlin.pde
  2. 36
    0
      Marlin/Marlin.pde.tmp.pde

+ 1834
- 5
Marlin/Marlin.pde
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 36
- 0
Marlin/Marlin.pde.tmp.pde Zobrazit soubor

@@ -0,0 +1,36 @@
1
+/* -*- c++ -*- */
2
+
3
+/*
4
+    Reprap firmware based on Sprinter and grbl.
5
+ Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
6
+ 
7
+ This program is free software: you can redistribute it and/or modify
8
+ it under the terms of the GNU General Public License as published by
9
+ the Free Software Foundation, either version 3 of the License, or
10
+ (at your option) any later version.
11
+ 
12
+ This program is distributed in the hope that it will be useful,
13
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
+ GNU General Public License for more details.
16
+ 
17
+ You should have received a copy of the GNU General Public License
18
+ along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
+ */
20
+
21
+/*
22
+ This firmware is a mashup between Sprinter and grbl.
23
+  (https://github.com/kliment/Sprinter)
24
+  (https://github.com/simen/grbl/tree)
25
+ 
26
+ It has preliminary support for Matthew Roberts advance algorithm 
27
+    http://reprap.org/pipermail/reprap-dev/2011-May/003323.html
28
+ */
29
+
30
+/* All the implementation is done in *.cpp files to get better compatibility with avr-gcc without the Arduino IDE */
31
+/* Use this file to help the Arduino IDE find which Arduino libraries are needed and to keep documentation on GCode */
32
+
33
+#include "Configuration.h"
34
+#ifdef ULTRA_LCD
35
+#include <LiquidCrystal.h>
36
+#endif

Loading…
Zrušit
Uložit