Battery-Emulator/Software/src/battery/Shunts.cpp
2025-06-06 16:49:41 +03:00

13 lines
217 B
C++

#include "../include.h"
#include "Shunt.h"
CanShunt* shunt = nullptr;
void setup_can_shunt() {
#if defined(SELECTED_SHUNT_CLASS)
shunt = new SELECTED_SHUNT_CLASS();
if (shunt) {
shunt->setup();
}
#endif
}