From 108d53ba286880f6575d5b156e07520165d62f80 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 8 Aug 2020 18:24:43 -0400 Subject: [PATCH] edited I2C troubleshooting suggestions --- afsk/telem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afsk/telem.c b/afsk/telem.c index 2d7d5af2..13b11c22 100644 --- a/afsk/telem.c +++ b/afsk/telem.c @@ -127,7 +127,7 @@ struct SensorConfig config_sensor(char *bus, int address, int milliAmps) { struct SensorConfig data; if (access(bus, W_OK | R_OK) < 0) { // Test if I2C Bus is missing - printf("ERROR: %s bus not present \n Check raspi-config Interfacing Options/I2C/Enable and /boot/config.txt \n", bus); + printf("ERROR: %s bus not present \n Check raspi-config Interfacing Options/I2C and /boot/config.txt \n", bus); data.fd = OFF; return (data); }