You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
446 B
19 lines
446 B
#pragma once |
|
|
|
#include "AP_BattMonitor_SMBus.h" |
|
|
|
class AP_BattMonitor_SMBus_NeoDesign : public AP_BattMonitor_SMBus |
|
{ |
|
public: |
|
AP_BattMonitor_SMBus_NeoDesign(AP_BattMonitor &mon, |
|
AP_BattMonitor::BattMonitor_State &mon_state, |
|
AP_BattMonitor_Params ¶ms); |
|
|
|
private: |
|
|
|
void timer(void) override; |
|
|
|
uint8_t _cell_count; |
|
|
|
static const constexpr uint8_t max_cell_count = 10; |
|
};
|
|
|