Skip to content

Commit f7b1b57

Browse files
authored
Merge c55ad17 into 8916ac8
2 parents 8916ac8 + c55ad17 commit f7b1b57

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

NEWS.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,10 @@ https://github.com/networkupstools/nut/milestone/9
172172
* The time stamp and inter-frame delay accounting was fixed, alleviating
173173
one of the problems reported in issue #2609. [PR #2982]
174174

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+
175179
- New NUT drivers:
176180
* Introduced a `ve-direct` driver for Victron Energy UPS/solar panels
177181
monitoring. Most specific reported values are in an `experimental.*`

drivers/bcmxcp.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ TODO List:
116116
#include "bcmxcp.h"
117117

118118
#define DRIVER_NAME "BCMXCP UPS driver"
119-
#define DRIVER_VERSION "0.37"
119+
#define DRIVER_VERSION "0.38"
120120

121121
#define MAX_NUT_NAME_LENGTH 128
122122
#define NUT_OUTLET_POSITION 7
@@ -1656,6 +1656,7 @@ void upsdrv_updateinfo(void)
16561656
{
16571657
bcmxcp_status.alarm_on_battery = 0;
16581658
bcmxcp_status.alarm_low_battery = 0;
1659+
bcmxcp_status.alarm_replace_battery = 0;
16591660

16601661
/* Set alarms */
16611662
alarm_init();

0 commit comments

Comments
 (0)