File tree 2 files changed +16
-15
lines changed
2 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 52
52
extern "C" {
53
53
#endif
54
54
55
+ /* Warning! Do not change the order of this enumeration */
55
56
enum {
56
- NRFS_SERVICE_ID_CLOCK ,
57
- NRFS_SERVICE_ID_DIAG ,
58
- NRFS_SERVICE_ID_DVFS ,
59
- NRFS_SERVICE_ID_GDPWR ,
60
- NRFS_SERVICE_ID_MRAM ,
61
- NRFS_SERVICE_ID_PMIC ,
62
- NRFS_SERVICE_ID_RESET ,
63
- NRFS_SERVICE_ID_TEMP ,
64
- NRFS_SERVICE_ID_USB ,
65
- NRFS_SERVICE_ID_GDFS
57
+ NRFS_SERVICE_ID_CLOCK = 0 ,
58
+ NRFS_SERVICE_ID_DIAG = 1 ,
59
+ NRFS_SERVICE_ID_DVFS = 2 ,
60
+ NRFS_SERVICE_ID_GDPWR = 3 ,
61
+ NRFS_SERVICE_ID_MRAM = 4 ,
62
+ NRFS_SERVICE_ID_PMIC = 5 ,
63
+ NRFS_SERVICE_ID_RESET = 6 ,
64
+ NRFS_SERVICE_ID_TEMP = 7 ,
65
+ NRFS_SERVICE_ID_USB = 8 ,
66
+ NRFS_SERVICE_ID_GDFS = 9 ,
66
67
};
67
68
68
69
#ifdef __cplusplus
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ extern "C" {
15
15
16
16
/** @brief Power domain selection */
17
17
typedef enum __NRFS_PACKED {
18
- GDPWR_GD_FAST_ACTIVE_0 ,
19
- GDPWR_GD_FAST_ACTIVE_1 ,
20
- GDPWR_GD_FAST_MAIN ,
21
- GDPWR_GD_SLOW_ACTIVE ,
22
- GDPWR_GD_SLOW_MAIN
18
+ GDPWR_GD_FAST_ACTIVE_0 = 0 ,
19
+ GDPWR_GD_FAST_ACTIVE_1 = 1 ,
20
+ GDPWR_GD_FAST_MAIN = 2 ,
21
+ GDPWR_GD_SLOW_ACTIVE = 3 ,
22
+ GDPWR_GD_SLOW_MAIN = 4
23
23
} gdpwr_power_domain_t ;
24
24
25
25
typedef enum __NRFS_PACKED {
You can’t perform that action at this time.
0 commit comments