File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,10 @@ https://github.com/networkupstools/nut/milestone/9
172
172
* The time stamp and inter-frame delay accounting was fixed, alleviating
173
173
one of the problems reported in issue #2609. [PR #2982]
174
174
175
+ - `bcmxcp` driver updates:
176
+ * The latching on to a previous replace battery status was fixed, with its
177
+ alarm state variable now correctly being reset; issue #2999. [PR #3002]
178
+
175
179
- New NUT drivers:
176
180
* Introduced a `ve-direct` driver for Victron Energy UPS/solar panels
177
181
monitoring. Most specific reported values are in an `experimental.*`
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ TODO List:
116
116
#include "bcmxcp.h"
117
117
118
118
#define DRIVER_NAME "BCMXCP UPS driver"
119
- #define DRIVER_VERSION "0.37 "
119
+ #define DRIVER_VERSION "0.38 "
120
120
121
121
#define MAX_NUT_NAME_LENGTH 128
122
122
#define NUT_OUTLET_POSITION 7
@@ -1656,6 +1656,7 @@ void upsdrv_updateinfo(void)
1656
1656
{
1657
1657
bcmxcp_status .alarm_on_battery = 0 ;
1658
1658
bcmxcp_status .alarm_low_battery = 0 ;
1659
+ bcmxcp_status .alarm_replace_battery = 0 ;
1659
1660
1660
1661
/* Set alarms */
1661
1662
alarm_init ();
You can’t perform that action at this time.
0 commit comments