We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b4e9fd commit 0510efdCopy full SHA for 0510efd
hardware/arduino/avr/libraries/Wire/utility/twi.c
@@ -19,6 +19,7 @@
19
Modified 2012 by Todd Krein (todd@krein.org) to implement repeated starts
20
Modified 2014 by Nicola Corna (nicola@corna.info)
21
Moved pullups enable from twi.c to Wire.cpp
22
+ Updated deprecated include <compat/twi.c>
23
*/
24
25
#include <math.h>
@@ -27,7 +28,7 @@
27
28
#include <inttypes.h>
29
#include <avr/io.h>
30
#include <avr/interrupt.h>
-#include <compat/twi.h>
31
+#include <util/twi.h>
32
33
#ifndef cbi
34
#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
0 commit comments