picocalc_keyboard.ino: wait a bit before initializing i2c

fixes stm32 not showing up in i2c bus when ds3231 RTC board is added.
This commit is contained in:
prokrypt
2025-04-13 01:24:03 -07:00
committed by GitHub
parent 77695bb5be
commit ae0a42e11a

View File

@@ -403,6 +403,8 @@ void setup() {
pinMode(PA13, OUTPUT); // pico enable
digitalWrite(PA13, LOW);
reg_init();
delay(10);
Serial1.begin(115200);