浏览代码

Improve check for Teensy 3.x boards

main
PaulStoffregen 5 年前
父节点
当前提交
c525e05e39
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      WireKinetis.cpp
  2. +1
    -1
      WireKinetis.h

+ 1
- 1
WireKinetis.cpp 查看文件

@@ -27,7 +27,7 @@
#include <Arduino.h>
#include "Wire.h"

#if defined(__arm__) && defined(TEENSYDUINO) && (defined(KINETISK) || defined(KINETISL))
#if defined(__arm__) && defined(TEENSYDUINO) && (defined(__MKL26Z64__) || defined(__MK20DX128__) || defined(__MK20DX256__) || defined(__MK64FX512__) || defined(__MK66FX1M0__))

#include "kinetis.h"
#include <string.h> // for memcpy

+ 1
- 1
WireKinetis.h 查看文件

@@ -27,7 +27,7 @@
#ifndef TwoWireKinetis_h
#define TwoWireKinetis_h

#if defined(__arm__) && defined(TEENSYDUINO) && (defined(KINETISK) || defined(KINETISL))
#if defined(__arm__) && defined(TEENSYDUINO) && (defined(__MKL26Z64__) || defined(__MK20DX128__) || defined(__MK20DX256__) || defined(__MK64FX512__) || defined(__MK66FX1M0__))

#include <Arduino.h>
#include <stdint.h>

正在加载...
取消
保存