port to ESP-IDF v6.0: fix vendor overflow sentinels, split driver deps, add sdkconfig.defaults
This commit is contained in:
parent
5ae607eec4
commit
731027ae81
|
|
@ -4,3 +4,4 @@ sdkconfig.old
|
||||||
.espport
|
.espport
|
||||||
managed_components/
|
managed_components/
|
||||||
dependencies.lock
|
dependencies.lock
|
||||||
|
sdkconfig
|
||||||
|
|
|
||||||
|
|
@ -3413,8 +3413,8 @@ AD5940Err AD5940_HSRtiaCal(HSRTIACal_Type *pCalCfg, void *pResult)
|
||||||
float ExcitVolt; /* Excitation voltage, unit is mV */
|
float ExcitVolt; /* Excitation voltage, unit is mV */
|
||||||
uint32_t RtiaVal;
|
uint32_t RtiaVal;
|
||||||
uint32_t const HpRtiaTable[]={200,1000,5000,10000,20000,40000,80000,160000,0};
|
uint32_t const HpRtiaTable[]={200,1000,5000,10000,20000,40000,80000,160000,0};
|
||||||
uint32_t const HSTIADERLOADTable[]={0,10,30,50,100,999999999999};
|
uint32_t const HSTIADERLOADTable[]={0,10,30,50,100,UINT32_MAX};
|
||||||
uint32_t const HSTIADERTIATable[] = {50,100,200,1000,5000,10000,20000,40000,80000,160000,0,999999999999999};
|
uint32_t const HSTIADERTIATable[] = {50,100,200,1000,5000,10000,20000,40000,80000,160000,0,UINT32_MAX};
|
||||||
uint32_t WgAmpWord;
|
uint32_t WgAmpWord;
|
||||||
|
|
||||||
iImpCar_Type DftRcalVolt, DftRtiaVolt;
|
iImpCar_Type DftRcalVolt, DftRtiaVolt;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
idf_component_register(SRCS "ad5941_port.c" "ad5941_bridge.c"
|
idf_component_register(SRCS "ad5941_port.c" "ad5941_bridge.c"
|
||||||
INCLUDE_DIRS "."
|
INCLUDE_DIRS "."
|
||||||
REQUIRES ad5941 driver esp_rom)
|
REQUIRES ad5941 esp_driver_spi esp_driver_gpio driver esp_rom)
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
CONFIG_BT_ENABLED=y
|
||||||
|
CONFIG_BT_NIMBLE_ENABLED=y
|
||||||
|
CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1
|
||||||
|
CONFIG_BT_NIMBLE_ROLE_PERIPHERAL=y
|
||||||
|
CONFIG_BT_NIMBLE_ROLE_CENTRAL=y
|
||||||
|
CONFIG_BT_NIMBLE_ROLE_OBSERVER=n
|
||||||
|
CONFIG_BT_NIMBLE_ROLE_BROADCASTER=y
|
||||||
Loading…
Reference in New Issue