Skip to content

Commit d0c17ef

Browse files
committed
fix(modem): Fix CI build per IDFv5.3
1 parent 06d013b commit d0c17ef

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

components/esp_modem/.build-test-rules.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
components/esp_modem/examples/ap_to_pppos:
22
disable:
3-
- if: IDF_TARGET in ["esp32h2"]
3+
- if: IDF_TARGET in ["esp32h2", "esp32p4"]
44

55
components/esp_modem/examples/modem_console:
66
disable:

components/esp_modem/test/target_iperf/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,5 @@
22
# CMakeLists in this exact order for cmake to work correctly
33
cmake_minimum_required(VERSION 3.5)
44

5-
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/system/console/advanced/components
6-
$ENV{IDF_PATH}/examples/common_components/iperf
7-
"../..")
8-
95
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
106
project(pppd_test)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## IDF Component Manager Manifest File
2+
dependencies:
3+
espressif/esp_modem:
4+
version: "^1.1.0"
5+
override_path: "../../.."
6+
espressif/iperf-cmd: "^0.1.1"

components/esp_modem/test/target_iperf/main/pppd_iperf_main.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
#include "sdkconfig.h"
99
#include "esp_log.h"
1010
#include "esp_console.h"
11-
#include "cmd_system.h"
1211

1312
void register_pppd(void);
1413

@@ -22,7 +21,6 @@ void app_main(void)
2221
ESP_ERROR_CHECK(esp_console_new_repl_uart(&uart_config, &repl_config, &repl));
2322

2423
/* Register commands */
25-
register_system_common();
2624
register_pppd();
2725

2826
printf("\n =======================================================\n");

0 commit comments

Comments
 (0)