restructured i2c-max split, added BMS unit test

This commit is contained in:
2026-03-09 16:09:28 -05:00
parent b03b0c0f43
commit b17ac96f2f
8 changed files with 137 additions and 63 deletions

View File

@@ -11,6 +11,7 @@
#include "esp_pm.h"
#include "mainEventLoop.hpp"
#include "max17048.h"
#include "bms_test.hpp"
// Global encoder instances
Encoder* topEnc = new Encoder(ENCODER_PIN_A, ENCODER_PIN_B);
@@ -53,6 +54,7 @@ void pm_init() {
}
extern "C" void app_main() {
pm_init();
mainApp();
// pm_init();
// mainApp();
bms_test_app();
}