From 7f395309ee6d6831f00c8159fe70d079437f9a1e Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Fri, 14 Apr 2023 09:39:18 -0400 Subject: [PATCH] print which bus clockgen detected --- cubesatsim/cubesatsim.ino | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 5122c335..ec89395b 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -5035,8 +5035,12 @@ void start_clockgen() { /* There was a problem detecting the IC ... check your connections */ Serial.println("No Si5351 detected on bus 2 ... Check your wiring or I2C ADDR!"); return; - } - } + } else + Serial.println("Si5351 detected on bus 2"); + + } else + Serial.println("Si5351 detected on bus 1"); + Serial.println("Starting clockgen frequency 434.9 MHz");