浏览代码

Add prog_int64_t & prog_uint64_t

teensy4-core
PaulStoffregen 8 年前
父节点
当前提交
a6b614bd1f
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      teensy3/avr/pgmspace.h

+ 2
- 0
teensy3/avr/pgmspace.h 查看文件

@@ -40,6 +40,8 @@ typedef int16_t prog_int16_t;
typedef uint16_t prog_uint16_t;
typedef int32_t prog_int32_t;
typedef uint32_t prog_uint32_t;
typedef int64_t prog_int64_t;
typedef uint64_t prog_uint64_t;

#define memchr_P(str, c, len) memchr((str), (c), (len))
#define memcmp_P(a, b, n) memcmp((a), (b), (n))

正在加载...
取消
保存