소스 검색

Only define BYTE (ancient Arduino) if not conflicting with other headers

main
PaulStoffregen 7 년 전
부모
커밋
d2d4bfcfc1
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      teensy/Print.h
  2. +5
    -0
      teensy3/Print.h

+ 5
- 0
teensy/Print.h 파일 보기

@@ -31,7 +31,12 @@
#define HEX 16
#define OCT 8
#define BIN 2

// 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

class __FlashStringHelper;


+ 5
- 0
teensy3/Print.h 파일 보기

@@ -42,7 +42,12 @@
#define HEX 16
#define OCT 8
#define BIN 2

// 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

class __FlashStringHelper;


Loading…
취소
저장