File tree 8 files changed +65
-34
lines changed
8 files changed +65
-34
lines changed Original file line number Diff line number Diff line change @@ -42,14 +42,6 @@ ZBUS_CHAN_DEFINE(NETWORK_CHAN,
42
42
ZBUS_MSG_INIT (.type = NETWORK_DISCONNECTED )
43
43
);
44
44
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
-
53
45
ZBUS_CHAN_DEFINE (ERROR_CHAN ,
54
46
enum error_type ,
55
47
NULL ,
Original file line number Diff line number Diff line change @@ -175,32 +175,7 @@ struct network_msg {
175
175
176
176
#define MSG_TO_NETWORK_MSG (_msg ) (*(const struct network_msg *)_msg)
177
177
178
- /** BATTERY MODULE */
179
178
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)
204
179
205
180
enum trigger_type {
206
181
TRIGGER_POLL_SHADOW = 0x1 ,
@@ -278,7 +253,6 @@ ZBUS_CHAN_DECLARE(
278
253
FOTA_STATUS_CHAN ,
279
254
LED_CHAN ,
280
255
NETWORK_CHAN ,
281
- BATTERY_CHAN ,
282
256
TIME_CHAN ,
283
257
TRIGGER_CHAN ,
284
258
TRIGGER_MODE_CHAN ,
Original file line number Diff line number Diff line change 13
13
14
14
#include "modules_common.h"
15
15
#include "message_channel.h"
16
+ #include "battery.h"
16
17
17
18
/* Register log module */
18
19
LOG_MODULE_REGISTER (app , CONFIG_APP_LOG_LEVEL );
Original file line number Diff line number Diff line change 5
5
#
6
6
7
7
target_sources (app PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} /battery.c)
8
+ target_include_directories (app PRIVATE .)
Original file line number Diff line number Diff line change 18
18
#include "lp803448_model.h"
19
19
#include "message_channel.h"
20
20
#include "modules_common.h"
21
+ #include "battery.h"
21
22
22
23
/* Register log module */
23
24
LOG_MODULE_REGISTER (battery , CONFIG_APP_BATTERY_LOG_LEVEL );
24
25
25
26
/* Register subscriber */
26
27
ZBUS_MSG_SUBSCRIBER_DEFINE (battery );
27
28
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
+
28
38
/* Observe channels */
29
39
ZBUS_CHAN_ADD_OBS (BATTERY_CHAN , battery , 0 );
30
40
Original file line number Diff line number Diff line change
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_ */
Original file line number Diff line number Diff line change 11
11
#include <date_time.h>
12
12
13
13
#include "message_channel.h"
14
+ #include "battery.h"
14
15
15
16
/* Register log module */
16
17
LOG_MODULE_REGISTER (button , CONFIG_APP_BUTTON_LOG_LEVEL );
Original file line number Diff line number Diff line change 19
19
20
20
#include "modules_common.h"
21
21
#include "message_channel.h"
22
+ #include "battery.h"
22
23
23
24
/* Register log module */
24
25
LOG_MODULE_REGISTER (cloud , CONFIG_APP_CLOUD_LOG_LEVEL );
You can’t perform that action at this time.
0 commit comments