浏览代码

Fix for fastest optimization with CPU > 120 MHz

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

+ 5
- 0
WireKinetis.cpp 查看文件

} else { } else {
tmp = port().D; tmp = port().D;
} }
#if F_CPU > 120000000
__asm__("nop");
__asm__("nop");
__asm__("nop");
#endif
if (sendStop) port().C1 = I2C_C1_IICEN; if (sendStop) port().C1 = I2C_C1_IICEN;
rxBufferLength = count; rxBufferLength = count;
return count; return count;

正在加载...
取消
保存