Merge branch 'can-receive' into can-frames

This commit is contained in:
Jaakko Haakana 2025-06-06 16:49:41 +03:00
commit 28fe1f3a69

View file

@ -6,5 +6,8 @@ CanShunt* shunt = nullptr;
void setup_can_shunt() {
#if defined(SELECTED_SHUNT_CLASS)
shunt = new SELECTED_SHUNT_CLASS();
if (shunt) {
shunt->setup();
}
#endif
}