Browse Source

Define LSBFIRST / MSBFIRST for LPC

pull/1/head
Scott Lahteine 6 years ago
parent
commit
eb18ae9003
  1. 12
      Marlin/src/HAL/HAL_LPC1768/include/Arduino.h

12
Marlin/src/HAL/HAL_LPC1768/include/Arduino.h

@ -28,16 +28,20 @@
#include "../pinmapping.h"
#define LOW 0x00
#define HIGH 0x01
#define CHANGE 0x02
#define FALLING 0x03
#define RISING 0x04
#define LOW 0x00
#define INPUT 0x00
#define OUTPUT 0x01
#define INPUT_PULLUP 0x02
#define LSBFIRST 0
#define MSBFIRST 1
#define CHANGE 0x02
#define FALLING 0x03
#define RISING 0x04
#define E2END 0xFFF // EEPROM end address
typedef uint8_t byte;

Loading…
Cancel
Save