Arrange needed includes in Marlin.h
This commit is contained in:
parent
93ea281061
commit
df27d01cd9
@ -41,26 +41,28 @@
|
|||||||
|
|
||||||
#include "fastio.h"
|
#include "fastio.h"
|
||||||
#include "Configuration.h"
|
#include "Configuration.h"
|
||||||
#include "pins.h"
|
|
||||||
|
|
||||||
#include "utility.h"
|
|
||||||
|
|
||||||
#ifndef SANITYCHECK_H
|
#ifndef SANITYCHECK_H
|
||||||
#error "Your Configuration.h and Configuration_adv.h files are outdated!"
|
#error "Your Configuration.h and Configuration_adv.h files are outdated!"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "Arduino.h"
|
|
||||||
|
|
||||||
#include "enum.h"
|
#include "enum.h"
|
||||||
|
#include "utility.h"
|
||||||
|
|
||||||
typedef unsigned long millis_t;
|
typedef unsigned long millis_t;
|
||||||
|
|
||||||
#ifdef USBCON
|
#ifdef USBCON
|
||||||
#include "HardwareSerial.h"
|
#include "HardwareSerial.h"
|
||||||
|
#if ENABLED(BLUETOOTH)
|
||||||
|
#define MYSERIAL bluetoothSerial
|
||||||
|
#else
|
||||||
|
#define MYSERIAL Serial
|
||||||
|
#endif // BLUETOOTH
|
||||||
|
#else
|
||||||
|
#include "MarlinSerial.h"
|
||||||
|
#define MYSERIAL customizedSerial
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "MarlinSerial.h"
|
|
||||||
|
|
||||||
#include "WString.h"
|
#include "WString.h"
|
||||||
|
|
||||||
#if ENABLED(PRINTCOUNTER)
|
#if ENABLED(PRINTCOUNTER)
|
||||||
@ -69,16 +71,6 @@ typedef unsigned long millis_t;
|
|||||||
#include "stopwatch.h"
|
#include "stopwatch.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef USBCON
|
|
||||||
#if ENABLED(BLUETOOTH)
|
|
||||||
#define MYSERIAL bluetoothSerial
|
|
||||||
#else
|
|
||||||
#define MYSERIAL Serial
|
|
||||||
#endif // BLUETOOTH
|
|
||||||
#else
|
|
||||||
#define MYSERIAL customizedSerial
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SERIAL_CHAR(x) MYSERIAL.write(x)
|
#define SERIAL_CHAR(x) MYSERIAL.write(x)
|
||||||
#define SERIAL_EOL SERIAL_CHAR('\n')
|
#define SERIAL_EOL SERIAL_CHAR('\n')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user