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.
27 lines
363 B
27 lines
363 B
#include "SIM_BattMonitor_SMBus_Generic.h" |
|
|
|
#include <AP_Common/Bitmask.h> |
|
|
|
/* |
|
|
|
Testing: |
|
|
|
param set BATT_MONITOR 16 |
|
reboot |
|
|
|
*/ |
|
|
|
namespace SITL { |
|
|
|
class Maxell : public SIM_BattMonitor_SMBus_Generic |
|
{ |
|
public: |
|
|
|
Maxell(); |
|
|
|
uint8_t cellcount() const override { return 14; } |
|
uint8_t connected_cells() const override { return 14; } |
|
|
|
}; |
|
|
|
} // namespace SITL
|
|
|