File tree Expand file tree Collapse file tree 5 files changed +15
-2
lines changed
tests/drivers/sensor/temp_sensor/boards Expand file tree Collapse file tree 5 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ config NRFS_HAS_TEMP_SERVICE
46
46
config NRFS_HAS_VBUS_DETECTOR_SERVICE
47
47
bool
48
48
49
+ config NRFS_TEMP_SERVICE_HAS_SUBSCRIPTION_SERVICE
50
+ bool
51
+
49
52
config NRFS
50
53
bool "nRF Services Support"
51
54
select NRFS_LOCAL_DOMAIN if SOC_NRF54H20_CPUAPP || \
@@ -93,6 +96,11 @@ config NRFS_TEMP_SERVICE_ENABLED
93
96
depends on NRFS_HAS_TEMP_SERVICE
94
97
default y
95
98
99
+ config NRFS_TEMP_SERVICE_SUBSCRIPTION_ENABLED
100
+ bool "Subscription feature for the temperature service"
101
+ depends on NRFS_TEMP_SERVICE_HAS_SUBSCRIPTION_SERVICE
102
+ default y if SOC_NRF9280 || SOC_NRF9251
103
+
96
104
config NRFS_VBUS_DETECTOR_SERVICE_ENABLED
97
105
bool "VBUS detector for the USB peripheral"
98
106
depends on NRFS_HAS_VBUS_DETECTOR_SERVICE
Original file line number Diff line number Diff line change 12
12
#define NRFS_TEMP_SERVICE_ENABLED
13
13
#endif
14
14
15
+ #ifdef CONFIG_NRFS_TEMP_SERVICE_SUBSCRIPTION_ENABLED
16
+ #define NRFS_TEMP_SERVICE_SUBSCRIPTION_ENABLED
17
+ #endif
18
+
15
19
#ifdef CONFIG_NRFS_MRAM_SERVICE_ENABLED
16
20
#define NRFS_MRAM_SERVICE_ENABLED
17
21
#endif
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ config SOC_NRF9230_ENGB_CPUAPP
28
28
select NRFS_HAS_PMIC_SERVICE
29
29
select NRFS_HAS_TEMP_SERVICE
30
30
select NRFS_HAS_VBUS_DETECTOR_SERVICE
31
+ select NRFS_TEMP_SERVICE_HAS_SUBSCRIPTION_SERVICE
31
32
32
33
config SOC_NRF9230_ENGB_CPURAD
33
34
select ARM
@@ -46,6 +47,7 @@ config SOC_NRF9230_ENGB_CPURAD
46
47
select NRFS_HAS_MRAM_SERVICE
47
48
select NRFS_HAS_PMIC_SERVICE
48
49
select NRFS_HAS_TEMP_SERVICE
50
+ select NRFS_TEMP_SERVICE_HAS_SUBSCRIPTION_SERVICE
49
51
50
52
config SOC_NRF9230_ENGB_CPUPPR
51
53
select RISCV_CORE_NORDIC_VPR
Original file line number Diff line number Diff line change 1
1
CONFIG_NRFS=y
2
- CONFIG_TEMP_NRFS_TRIGGER_OWN_THREAD=y
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ manifest:
200
200
groups :
201
201
- hal
202
202
- name : hal_nordic
203
- revision : 9587b1dcb83d24ab74e89837843a5f7d573f7059
203
+ revision : pull/307/head
204
204
path : modules/hal/nordic
205
205
groups :
206
206
- hal
You can’t perform that action at this time.
0 commit comments