Skip to content

Commit b4f695f

Browse files
modules: battery: channel definition into per-module header
Separating battery channel definition into dedicated per-module header. Signed-off-by: Giacomo Dematteis <giacomo.dematteis@nordicsemi.no>
1 parent c878c3b commit b4f695f

File tree

8 files changed

+65
-34
lines changed

8 files changed

+65
-34
lines changed

app/src/common/message_channel.c

-8
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,6 @@ ZBUS_CHAN_DEFINE(NETWORK_CHAN,
4242
ZBUS_MSG_INIT(.type = NETWORK_DISCONNECTED)
4343
);
4444

45-
ZBUS_CHAN_DEFINE(BATTERY_CHAN,
46-
struct battery_msg,
47-
NULL,
48-
NULL,
49-
ZBUS_OBSERVERS_EMPTY,
50-
ZBUS_MSG_INIT(0)
51-
);
52-
5345
ZBUS_CHAN_DEFINE(ERROR_CHAN,
5446
enum error_type,
5547
NULL,

app/src/common/message_channel.h

-26
Original file line numberDiff line numberDiff line change
@@ -175,32 +175,7 @@ struct network_msg {
175175

176176
#define MSG_TO_NETWORK_MSG(_msg) (*(const struct network_msg *)_msg)
177177

178-
/** BATTERY MODULE */
179178

180-
enum battery_msg_type {
181-
/* Output message types */
182-
183-
/* Response message to a request for a battery percentage sample. The sample is found in the
184-
* .percentage field of the message.
185-
*/
186-
BATTERY_PERCENTAGE_SAMPLE_RESPONSE = 0x1,
187-
188-
/* Input message types */
189-
190-
/* Request to retrieve the current battery percentage. The response is sent as a
191-
* BATTERY_PERCENTAGE_SAMPLE_RESPONSE message.
192-
*/
193-
BATTERY_PERCENTAGE_SAMPLE_REQUEST,
194-
};
195-
196-
struct battery_msg {
197-
enum battery_msg_type type;
198-
199-
/** Contains the current charge of the battery in percentage. */
200-
double percentage;
201-
};
202-
203-
#define MSG_TO_BATTERY_MSG(_msg) (*(const struct battery_msg *)_msg)
204179

205180
enum trigger_type {
206181
TRIGGER_POLL_SHADOW = 0x1,
@@ -278,7 +253,6 @@ ZBUS_CHAN_DECLARE(
278253
FOTA_STATUS_CHAN,
279254
LED_CHAN,
280255
NETWORK_CHAN,
281-
BATTERY_CHAN,
282256
TIME_CHAN,
283257
TRIGGER_CHAN,
284258
TRIGGER_MODE_CHAN,

app/src/modules/app/app.c

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
#include "modules_common.h"
1515
#include "message_channel.h"
16+
#include "battery.h"
1617

1718
/* Register log module */
1819
LOG_MODULE_REGISTER(app, CONFIG_APP_LOG_LEVEL);

app/src/modules/battery/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
#
66

77
target_sources(app PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/battery.c)
8+
target_include_directories(app PRIVATE .)

app/src/modules/battery/battery.c

+10
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,23 @@
1818
#include "lp803448_model.h"
1919
#include "message_channel.h"
2020
#include "modules_common.h"
21+
#include "battery.h"
2122

2223
/* Register log module */
2324
LOG_MODULE_REGISTER(battery, CONFIG_APP_BATTERY_LOG_LEVEL);
2425

2526
/* Register subscriber */
2627
ZBUS_MSG_SUBSCRIBER_DEFINE(battery);
2728

29+
/* Define channels provided by this module */
30+
ZBUS_CHAN_DEFINE(BATTERY_CHAN,
31+
struct battery_msg,
32+
NULL,
33+
NULL,
34+
ZBUS_OBSERVERS_EMPTY,
35+
ZBUS_MSG_INIT(0)
36+
);
37+
2838
/* Observe channels */
2939
ZBUS_CHAN_ADD_OBS(BATTERY_CHAN, battery, 0);
3040

app/src/modules/battery/battery.h

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
#ifndef _BATTERY_H_
8+
#define _BATTERY_H_
9+
10+
#include <zephyr/kernel.h>
11+
#include <zephyr/zbus/zbus.h>
12+
13+
#ifdef __cplusplus
14+
extern "C" {
15+
#endif
16+
17+
/* Channels provided by this module */
18+
ZBUS_CHAN_DECLARE(
19+
BATTERY_CHAN
20+
);
21+
22+
enum battery_msg_type {
23+
/* Output message types */
24+
25+
/* Response message to a request for a battery percentage sample. The sample is found in the
26+
* .percentage field of the message.
27+
*/
28+
BATTERY_PERCENTAGE_SAMPLE_RESPONSE = 0x1,
29+
30+
/* Input message types */
31+
32+
/* Request to retrieve the current battery percentage. The response is sent as a
33+
* BATTERY_PERCENTAGE_SAMPLE_RESPONSE message.
34+
*/
35+
BATTERY_PERCENTAGE_SAMPLE_REQUEST,
36+
};
37+
38+
struct battery_msg {
39+
enum battery_msg_type type;
40+
41+
/** Contains the current charge of the battery in percentage. */
42+
double percentage;
43+
};
44+
45+
#define MSG_TO_BATTERY_MSG(_msg) (*(const struct battery_msg *)_msg)
46+
47+
#ifdef __cplusplus
48+
}
49+
#endif
50+
51+
#endif /* _BATTERY_H_ */

app/src/modules/button/button.c

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include <date_time.h>
1212

1313
#include "message_channel.h"
14+
#include "battery.h"
1415

1516
/* Register log module */
1617
LOG_MODULE_REGISTER(button, CONFIG_APP_BUTTON_LOG_LEVEL);

app/src/modules/cloud/cloud_module.c

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
#include "modules_common.h"
2121
#include "message_channel.h"
22+
#include "battery.h"
2223

2324
/* Register log module */
2425
LOG_MODULE_REGISTER(cloud, CONFIG_APP_CLOUD_LOG_LEVEL);

0 commit comments

Comments
 (0)