Procházet zdrojové kódy

Remove ancient BYTE define (causes more trouble than it's worth)

main
PaulStoffregen před 6 roky
rodič
revize
92533cb5ce
3 změnil soubory, kde provedl 8 přidání a 8 odebrání
  1. +2
    -2
      keywords.txt
  2. +3
    -3
      teensy/Print.h
  3. +3
    -3
      teensy3/Print.h

+ 2
- 2
keywords.txt Zobrazit soubor

@@ -52,8 +52,8 @@ waitForEvent KEYWORD2
MillisTimer LITERAL1
beginRepeating KEYWORD2

# removed by Arduino 1.0, but still in Teensyduino
BYTE LITERAL1
# removed by Arduino 1.0, now also removed from Teensyduino
#BYTE LITERAL1

# Arduino constants
A0 LITERAL1

+ 3
- 3
teensy/Print.h Zobrazit soubor

@@ -34,9 +34,9 @@

// BYTE was defined in very old versions of Arduino
// maybe this now causes more trouble than it's worth?
#ifndef BYTE
#define BYTE 0
#endif
//#ifndef BYTE
//#define BYTE 0
//#endif

class __FlashStringHelper;


+ 3
- 3
teensy3/Print.h Zobrazit soubor

@@ -45,9 +45,9 @@

// BYTE was defined in very old versions of Arduino
// maybe this now causes more trouble than it's worth?
#ifndef BYTE
#define BYTE 0
#endif
//#ifndef BYTE
//#define BYTE 0
//#endif

class __FlashStringHelper;


Načítá se…
Zrušit
Uložit