浏览代码

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

teensy4-core
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;


正在加载...
取消
保存