Browse Source

AT90USB is only defined after pins.h is included.

pull/1/head
Johann Rocholl 12 years ago
parent
commit
621c24a10f
  1. 8
      Marlin/Marlin.h

8
Marlin/Marlin.h

@ -4,10 +4,6 @@
#ifndef MARLIN_H
#define MARLIN_H
#ifndef AT90USB
#define HardwareSerial_h // trick to disable the standard HWserial
#endif
#define FORCE_INLINE __attribute__((always_inline)) inline
#include <math.h>
@ -26,6 +22,10 @@
#include "Configuration.h"
#include "pins.h"
#ifndef AT90USB
#define HardwareSerial_h // trick to disable the standard HWserial
#endif
#if ARDUINO >= 100
#if defined(__AVR_ATmega644P__)
#include "WProgram.h"

Loading…
Cancel
Save