Browse Source

moved <stdio.h> to more dominant location.

Bernhard 13 years ago
parent
commit
986f0ba76c
2 changed files with 4 additions and 1 deletions
  1. 1
    0
      Marlin/Marlin.h
  2. 3
    1
      Marlin/Marlin.pde

+ 1
- 0
Marlin/Marlin.h View File

4
 // Tonokip RepRap firmware rewrite based off of Hydra-mmm firmware.
4
 // Tonokip RepRap firmware rewrite based off of Hydra-mmm firmware.
5
 // Licence: GPL
5
 // Licence: GPL
6
 #define  HardwareSerial_h // trick to disable the standard HWserial
6
 #define  HardwareSerial_h // trick to disable the standard HWserial
7
+#include <stdio.h>
7
 #include <math.h>
8
 #include <math.h>
8
 #if ARDUINO >= 100
9
 #if ARDUINO >= 100
9
   #include "Arduino.h"
10
   #include "Arduino.h"

+ 3
- 1
Marlin/Marlin.pde View File

27
 
27
 
28
 #include <math.h>
28
 #include <math.h>
29
 #include <EEPROM.h>
29
 #include <EEPROM.h>
30
+#include <stdio.h>
31
+
30
 #include "EEPROMwrite.h"
32
 #include "EEPROMwrite.h"
31
 #include "fastio.h"
33
 #include "fastio.h"
32
 #include "Configuration.h"
34
 #include "Configuration.h"
39
 #include "motion_control.h"
41
 #include "motion_control.h"
40
 #include "cardreader.h"
42
 #include "cardreader.h"
41
 #include "watchdog.h"
43
 #include "watchdog.h"
42
-#include <stdio.h>
44
+
43
 
45
 
44
 
46
 
45
 #define VERSION_STRING  "1.0.0 Beta 1"
47
 #define VERSION_STRING  "1.0.0 Beta 1"

Loading…
Cancel
Save