[Split] Ensure SOFT_SERIAL_PIN is defined if USE_I2C isn't defined (#17466)

This commit is contained in:
Drashna Jaelre 2022-06-25 12:34:40 -07:00 committed by GitHub
parent cbbdcec290
commit 7fd3d76faa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -498,6 +498,10 @@ bool soft_serial_transaction(int sstd_index) {
sei(); sei();
return true; return true;
} }
#else
# ifndef USE_I2C
# error SOFT_SERIAL_PIN or USE_I2C is required but has not been defined.
# endif
#endif #endif
// Helix serial.c history // Helix serial.c history