mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-29 10:17:30 +02:00
feat(wifi_remote): Add build test for current IDF examples
Building also standard IDF examples that use esp-wifi-remote (building for wifiless targets ESP32P4, ESP32H2 and one wifi target ESP32s3)
This commit is contained in:
@ -222,6 +222,10 @@ if SLAVE_IDF_TARGET_ESP32C6
|
||||
bool
|
||||
default y
|
||||
|
||||
config SLAVE_SOC_WIFI_MAC_VERSION_NUM
|
||||
int
|
||||
default 2
|
||||
|
||||
endif # ESP32C6
|
||||
|
||||
if SLAVE_IDF_TARGET_ESP32C5
|
||||
@ -266,6 +270,10 @@ if SLAVE_IDF_TARGET_ESP32C5
|
||||
bool
|
||||
default y
|
||||
|
||||
config SLAVE_SOC_WIFI_MAC_VERSION_NUM
|
||||
int
|
||||
default 3
|
||||
|
||||
endif # ESP32C5
|
||||
|
||||
if SLAVE_IDF_TARGET_ESP32C61
|
||||
@ -306,4 +314,8 @@ if SLAVE_IDF_TARGET_ESP32C61
|
||||
bool
|
||||
default y
|
||||
|
||||
config SLAVE_SOC_WIFI_MAC_VERSION_NUM
|
||||
int
|
||||
default 3
|
||||
|
||||
endif # ESP32C61
|
||||
|
@ -10,7 +10,8 @@ if len(sys.argv) < 2:
|
||||
output_directory = sys.argv[1]
|
||||
|
||||
# Input Kconfig file
|
||||
kconfig_file = f"idf_v{os.getenv('ESP_IDF_VERSION')}/Kconfig.slave_select.in"
|
||||
component_path = os.path.normpath(os.path.join(os.path.realpath(__file__),'..', '..'))
|
||||
kconfig_file = os.path.join(component_path, f"idf_v{os.getenv('ESP_IDF_VERSION')}", 'Kconfig.slave_select.in')
|
||||
|
||||
# Output file prefix
|
||||
output_prefix = 'sdkconfig.ci.'
|
||||
|
Reference in New Issue
Block a user