From 258c4b78d7431da3a2f90fa165de5ed531281899 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Tue, 15 Jun 2021 08:47:50 -0400 Subject: [PATCH] for i2c bus 3, added printf that it is not an error for a CubeSatSim Lite --- afsk/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/afsk/main.c b/afsk/main.c index 00c723f5..b91d375c 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -2360,6 +2360,8 @@ int test_i2c_bus(int bus) if (error != 0) { printf("ERROR: %s bus has a problem \n Check I2C wiring and pullup resistors \n", busDev); + if (bus == 3) + printf("-> If this is a CubeSatSim Lite, then this error is normal!\n"); output = -1; } } else