summaryrefslogtreecommitdiffstats
path: root/libbt/src/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbt/src/conf.c')
-rw-r--r--libbt/src/conf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libbt/src/conf.c b/libbt/src/conf.c
index 39ac12e..8800991 100644
--- a/libbt/src/conf.c
+++ b/libbt/src/conf.c
@@ -37,6 +37,8 @@
int userial_set_port(char *p_conf_name, char *p_conf_value, int param);
int hw_set_patch_file_path(char *p_conf_name, char *p_conf_value, int param);
int hw_set_patch_file_name(char *p_conf_name, char *p_conf_value, int param);
+int hw_set_pre_patch_file_name(char *p_conf_name, char *p_conf_value, int param);
+int userial_set_force_use_2_stop_bits(char *p_conf_name, char *p_conf_value, int param);
#if (VENDOR_LIB_RUNTIME_TUNING_ENABLED == TRUE)
int hw_set_patch_settlement_delay(char *p_conf_name, char *p_conf_value, int param);
#endif
@@ -70,6 +72,9 @@ static const conf_entry_t conf_table[] = {
{"UartPort", userial_set_port, 0},
{"FwPatchFilePath", hw_set_patch_file_path, 0},
{"FwPatchFileName", hw_set_patch_file_name, 0},
+ {"FwPrePatchFileName", hw_set_pre_patch_file_name, 0},
+ {"UartForceUse2StopBits", userial_set_force_use_2_stop_bits, 0},
+
#if (VENDOR_LIB_RUNTIME_TUNING_ENABLED == TRUE)
{"FwPatchSettlementDelay", hw_set_patch_settlement_delay, 0},
#endif