mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
fix(phy): All chip support cert_test
This commit is contained in:
@ -80,8 +80,16 @@ if(link_binary_libs)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(CONFIG_ESP_PHY_ENABLE_CERT_TEST)
|
if(CONFIG_ESP_PHY_ENABLE_CERT_TEST)
|
||||||
target_link_libraries(${COMPONENT_LIB} INTERFACE $<TARGET_FILE:${esp_phy_lib}> libbttestmode.a
|
if(CONFIG_IDF_TARGET_ESP32)
|
||||||
librfate.a librftest.a $<TARGET_FILE:${esp_phy_lib}>)
|
target_link_libraries(${COMPONENT_LIB} INTERFACE $<TARGET_FILE:${esp_phy_lib}> libbttestmode.a
|
||||||
|
librftest.a $<TARGET_FILE:${esp_phy_lib}>)
|
||||||
|
elseif(CONFIG_IDF_TARGET_ESP32S2)
|
||||||
|
target_link_libraries(${COMPONENT_LIB} INTERFACE $<TARGET_FILE:${esp_phy_lib}> librftest.a
|
||||||
|
librfate.a $<TARGET_FILE:${esp_phy_lib}>)
|
||||||
|
else()
|
||||||
|
target_link_libraries(${COMPONENT_LIB} INTERFACE $<TARGET_FILE:${esp_phy_lib}> libbttestmode.a
|
||||||
|
librfate.a librftest.a $<TARGET_FILE:${esp_phy_lib}>)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
examples/phy/cert_test:
|
examples/phy/cert_test:
|
||||||
enable:
|
enable:
|
||||||
- if: IDF_TARGET in ["esp32c3", "esp32s3"]
|
- if: IDF_TARGET in ["esp32", "esp32c2", "esp32c3", "esp32c6", "esp32h2", "esp32s2", "esp32s3"]
|
||||||
temporary: true
|
temporary: true
|
||||||
reason: the other targets are not tested yet
|
reason: the other targets are not tested yet
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
| Supported Targets | ESP32-C3 | ESP32-S3 |
|
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S2 | ESP32-S3 |
|
||||||
| ----------------- | -------- | -------- |
|
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- |
|
||||||
|
|
||||||
# Certification Test Example
|
# Certification Test Example
|
||||||
|
|
||||||
@ -121,4 +121,4 @@ For BLE test, if you want to use `fcc_le_tx` and `rw_le_rx_per` legacy commands
|
|||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
For any technical queries, please open an [issue](https://github.com/espressif/esp-idf/issues) on GitHub. We will get back to you soon.
|
For any technical queries, please open an [issue](https://github.com/espressif/esp-idf/issues) on GitHub. We will get back to you soon.
|
||||||
|
Reference in New Issue
Block a user