From 768c7d2811b76a1d2eab08face35d720a7ac5ffe Mon Sep 17 00:00:00 2001 From: Erwan Gouriou Date: Tue, 5 Dec 2023 14:13:56 +0100 Subject: [PATCH] lib: stm32wba: Disable radio based calibration Radio based calibration is not yet available Signed-off-by: Erwan Gouriou --- lib/stm32wba/hci/README | 9 ++++++++- lib/stm32wba/hci/app_conf.h | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/stm32wba/hci/README b/lib/stm32wba/hci/README index 5c4a5b621..3258540f1 100644 --- a/lib/stm32wba/hci/README +++ b/lib/stm32wba/hci/README @@ -93,4 +93,11 @@ License Link: Patch List: - * NA + * Disable Temperature based radio calibration: + Impacted file: app_conf.h + + * Minimize dependency list + Impacted files: stm_list.h + main.h + app_conf.h + scm.c diff --git a/lib/stm32wba/hci/app_conf.h b/lib/stm32wba/hci/app_conf.h index 163009cf2..8c8d83e8c 100644 --- a/lib/stm32wba/hci/app_conf.h +++ b/lib/stm32wba/hci/app_conf.h @@ -442,7 +442,7 @@ typedef enum #define NEXT_EVENT_SCHEDULING_FROM_ISR (1) /* Link Layer uses temperature based calibration (0 --> NO ; 1 --> YES) */ -#define USE_TEMPERATURE_BASED_RADIO_CALIBRATION (1) +#define USE_TEMPERATURE_BASED_RADIO_CALIBRATION (0) #define RADIO_INTR_NUM RADIO_IRQn /* 2.4GHz RADIO global interrupt */ #define RADIO_INTR_PRIO_HIGH (0) /* 2.4GHz RADIO interrupt priority when radio is Active */