Kaynağa Gözat

Fix for fastest optimization with CPU > 120 MHz

main
PaulStoffregen 7 yıl önce
ebeveyn
işleme
13fc9401d9
1 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  1. +5
    -0
      WireKinetis.cpp

+ 5
- 0
WireKinetis.cpp Dosyayı Görüntüle

@@ -704,6 +704,11 @@ uint8_t TwoWire::requestFrom(uint8_t address, uint8_t length, uint8_t sendStop)
} else {
tmp = port().D;
}
#if F_CPU > 120000000
__asm__("nop");
__asm__("nop");
__asm__("nop");
#endif
if (sendStop) port().C1 = I2C_C1_IICEN;
rxBufferLength = count;
return count;

Yükleniyor…
İptal
Kaydet