File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed
modules/hal_silabs/simplicity_sdk Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -104,5 +104,17 @@ Modules
104
104
* The TinyCrypt library was removed as the upstream version is no longer maintained.
105
105
PSA Crypto API is now the recommended cryptographic library for Zephyr.
106
106
107
+ Silabs
108
+ ======
109
+
110
+ * Aligned the name of the Rail options with the other SiSDK related options:
111
+
112
+ * :kconfig:option: `CONFIG_RAIL_PA_CURVE_HEADER ` to
113
+ :kconfig:option: `CONFIG_SILABS_SISDK_RAIL_PA_CURVE_HEADER `
114
+ * :kconfig:option: `CONFIG_RAIL_PA_CURVE_TYPES_HEADER ` to
115
+ :kconfig:option: `CONFIG_SILABS_SISDK_RAIL_PA_CURVE_TYPES_HEADER `
116
+ * :kconfig:option: `CONFIG_RAIL_PA_ENABLE_CALIBRATION ` to
117
+ :kconfig:option: `CONFIG_SILABS_SISDK_RAIL_PA_ENABLE_CALIBRATION `
118
+
107
119
Architectures
108
120
*************
Original file line number Diff line number Diff line change @@ -16,23 +16,23 @@ config SILABS_SISDK_TIMER
16
16
config SILABS_SISDK_VDAC
17
17
bool "Peripheral HAL for VDAC"
18
18
19
- config RAIL_PA_CURVE_HEADER
19
+ config SILABS_SISDK_RAIL_PA_CURVE_HEADER
20
20
string "RAIL PA custom curve header file"
21
21
default "pa_curves_efr32.h"
22
22
help
23
23
Name of custom PA curve header file for use by PA initialization.
24
24
See AN1127 for information on how to create a custom PA curve.
25
25
The header file must be available on the include path.
26
26
27
- config RAIL_PA_CURVE_TYPES_HEADER
27
+ config SILABS_SISDK_RAIL_PA_CURVE_TYPES_HEADER
28
28
string "RAIL PA curve types header file"
29
29
default "pa_curve_types_efr32.h"
30
30
help
31
31
Name of custom PA curve type header file for use by PA initialization.
32
32
See AN1127 for information on how to create a custom PA curve.
33
33
The header file must be available on the include path.
34
34
35
- config RAIL_PA_ENABLE_CALIBRATION
35
+ config SILABS_SISDK_RAIL_PA_ENABLE_CALIBRATION
36
36
bool "RAIL PA: apply factory calibration offset"
37
37
default y
38
38
help
Original file line number Diff line number Diff line change 32
32
#define SL_RAIL_UTIL_PA_SELECTION_SUBGHZ RAIL_TX_POWER_MODE_NONE
33
33
#endif
34
34
35
- #define SL_RAIL_UTIL_PA_CURVE_HEADER CONFIG_RAIL_PA_CURVE_HEADER
36
- #define SL_RAIL_UTIL_PA_CURVE_TYPES CONFIG_RAIL_PA_CURVE_TYPES_HEADER
37
- #define SL_RAIL_UTIL_PA_CALIBRATION_ENABLE CONFIG_RAIL_PA_ENABLE_CALIBRATION
35
+ #define SL_RAIL_UTIL_PA_CURVE_HEADER CONFIG_SILABS_SISDK_RAIL_PA_CURVE_HEADER
36
+ #define SL_RAIL_UTIL_PA_CURVE_TYPES CONFIG_SILABS_SISDK_RAIL_PA_CURVE_TYPES_HEADER
37
+ #define SL_RAIL_UTIL_PA_CALIBRATION_ENABLE CONFIG_SILABS_SISDK_RAIL_PA_ENABLE_CALIBRATION
38
38
39
39
#endif /* SL_RAIL_UTIL_PA_CONFIG_H */
You can’t perform that action at this time.
0 commit comments