Merge pull request #1592 from dalathegreat/improvement/stark-BMS-on-by-default

Stark CMR: Make BMS power on by default
This commit is contained in:
Daniel Öster 2025-10-02 14:27:47 +03:00 committed by GitHub
commit f3a6157080
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,6 +21,9 @@ class StarkHal : public Esp32Hal {
public: public:
const char* name() { return "Stark CMR Module"; } const char* name() { return "Stark CMR Module"; }
//Always enable BMS power on Stark CMR, it does not collide with any pin definitions
virtual bool always_enable_bms_power() { return true; }
// Not needed, GPIO 16 has hardware pullup for PSRAM compatibility // Not needed, GPIO 16 has hardware pullup for PSRAM compatibility
virtual gpio_num_t PIN_5V_EN() { return GPIO_NUM_NC; } virtual gpio_num_t PIN_5V_EN() { return GPIO_NUM_NC; }