summaryrefslogtreecommitdiff
path: root/commandline/i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'commandline/i2c.c')
-rw-r--r--commandline/i2c.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/commandline/i2c.c b/commandline/i2c.c
index 8d28347..ce0f70e 100644
--- a/commandline/i2c.c
+++ b/commandline/i2c.c
@@ -10,6 +10,8 @@ int main(int argc, char **argv)
signed char i;
short int number;
+ char bit_sda = 6;
+
i2c_init();
i2c_start();
puts("ready");
@@ -33,13 +35,13 @@ int main(int argc, char **argv)
usleep(10);
//verify_scl_high();
if (i < 0) {
- if (get_status() & (1 << BIT_SDA))
+ if (get_status() & (1 << bit_sda))
puts("> NAK");
else
puts("> ACK");
}
else if (number == 256) {
- if (get_status() & (1 << BIT_SDA))
+ if (get_status() & (1 << bit_sda))
puts("1");
else
puts("0");