Skip to content

Commit e35d7f0

Browse files
committed
fix(modem): CI/README: remove IDFv4.4, add IDFv5.4
1 parent 090b1ff commit e35d7f0

File tree

7 files changed

+4
-45
lines changed

7 files changed

+4
-45
lines changed

.github/workflows/modem__build-host-tests.yml

+4-13
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,8 @@ jobs:
1313
name: Build examples
1414
strategy:
1515
matrix:
16-
idf_ver: ["latest", "release-v4.4", "release-v5.0", "release-v5.1", "release-v5.2", "release-v5.3"]
17-
example: ["pppos_client", "modem_console", "modem_tcp_client", "ap_to_pppos", "simple_cmux_client"]
18-
exclude:
19-
- idf_ver: "release-v4.4"
20-
example: modem_tcp_client
16+
idf_ver: ["latest", "release-v5.0", "release-v5.1", "release-v5.2", "release-v5.3", "release-v5.4"]
17+
example: ["pppos_client", "modem_console", "modem_tcp_client", "ap_to_pppos", "simple_cmux_client", "modem_psm"]
2118
include:
2219
- idf_ver: "release-v5.0"
2320
example: "simple_cmux_client"
@@ -26,13 +23,7 @@ jobs:
2623
runs-on: ubuntu-22.04
2724
container: espressif/idf:${{ matrix.idf_ver }}
2825
steps:
29-
- name: Check out code (v3) # @v4 failed due to Node 20's requirement, incompatible with older IDF versions
30-
if: matrix.idf_ver != 'latest' && matrix.idf_ver < 'release-v5.0'
31-
uses: actions/checkout@v3
32-
with:
33-
path: protocols
34-
- name: Check out code (v4)
35-
if: matrix.idf_ver == 'latest' || matrix.idf_ver >= 'release-v5.0'
26+
- name: Check out code
3627
uses: actions/checkout@v4
3728
with:
3829
path: protocols
@@ -53,7 +44,7 @@ jobs:
5344
name: Build tests
5445
strategy:
5546
matrix:
56-
idf_ver: ["release-v5.0", "release-v5.1", "release-v5.2", "release-v5.3", "latest"]
47+
idf_ver: ["release-v5.0", "release-v5.1", "release-v5.2", "release-v5.3", "release-v5.4", "latest"]
5748
test: ["target", "target_ota", "target_iperf"]
5849

5950
runs-on: ubuntu-22.04

components/esp_modem/examples/ap_to_pppos/README.md

-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,3 @@ By default, this example simply connects to the PPP server using a supported dev
1515
This example however, doesn't rely on sending specific AT commands, just the bare minimum to setup the cellular network.
1616
Thus, if the `EXAMPLE_USE_MINIMAL_DCE` option is enabled, we directly inherit from the `ModuleIf` and implement only the basic commands.
1717
Also, to demonstrate the dce_factory functionality, a new `NetDCE_Factory` is implemented for creating the network module and the DCE.
18-
19-
### Supported IDF versions
20-
21-
This example is only supported from `v4.2`, since is uses NAPT feature.

components/esp_modem/examples/linux_modem/README.md

-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,3 @@ over PPPoS, i.e. over the modem serial line.
1717
* Experiment with the network, after getting the IP from the modem device
1818
- directly in the code
1919
- in the system (need to set `tun` interface IP, dns servers, and routing the desired traffic over the tun interface)
20-
21-
### Supported IDF versions
22-
23-
This example (using the default CMake IDF build system) is only supported from `v4.4`, since is uses `idf.py`'s linux target.

components/esp_modem/examples/modem_console/README.md

-6
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,3 @@ USB example uses Quactel BG96 modem device. BG96 needs a positive pulse on its P
2525
This example supports USB modem hot-plugging and reconnection. There is one limitation coming from esp_console component:
2626
When esp_console REPL is being destroyed (after USB mode disconnection or after `exit` command), it will block on UART read.
2727
You must send a character to it (via idf.py monitor), so it unblocks and properly exits.
28-
29-
### Supported IDF versions
30-
31-
This example is only supported from `v4.2`, due to support of the console repl mode.
32-
33-
USB example is supported from `v4.4`.

components/esp_modem/examples/modem_tcp_client/README.md

-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,3 @@ To enable this mode, please set `EXAMPLE_CUSTOM_TCP_TRANSPORT=y`
2222
This configuration could be used with any network library, which is connecting to a localhost endpoint instead of remote one. This example creates a localhost listener which basically mimics the remote endpoint by forwarding the traffic between the library and the TCP/socket layer of the modem (which is already secure if the TLS is used in the network library)
2323

2424
![with localhost listener](at_client_localhost.png)
25-
26-
### Supported IDF versions
27-
28-
This example is supported from IDF `v5.0`.

components/esp_modem/examples/pppos_client/README.md

-6
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,3 @@ For USB enabled targets (ESP32-S2, ESP32-S3, or ESP32-P4), it is possible to con
1818
USB example uses Quactel BG96 modem device. BG96 needs a positive pulse on its PWK pin to boot-up.
1919

2020
This example supports USB modem hot-plugging and reconnection.
21-
22-
### Supported IDF versions
23-
24-
This example is only supported from `v4.1`, as this is the default dependency of `esp-modem` component.
25-
26-
USB example is supported from `v4.4`.

components/esp_modem/examples/simple_cmux_client/README.md

-8
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,3 @@ The example uses the following configuration options to demonstrate basic esp-mo
1111
* `EXAMPLE_NEED_SIM_PIN`: To unlock the SIM card with a PIN code if needed
1212
* `EXAMPLE_PERFORM_OTA`: To start simple OTA at the end of the example to exercise basic CMUX/modem networking. Please note that the option `CONFIG_UART_ISR_IN_IRAM` is not enabled automatically, so that buffer overflows are expected and CMUX/PPP and networking should recover.
1313
* `EXAMPLE_USE_VFS_TERM`: To demonstrate using an abstract file descriptor to talk to the device (instead of the UART driver directly). This option could be used when implementing a custom VFS driver.
14-
15-
## About the esp_modem
16-
17-
Please check the component [README](../../README.md)
18-
19-
### Supported IDF versions
20-
21-
This example is only supported from `v4.3`, since is uses an experimental `esp_event_cxx` component.

0 commit comments

Comments
 (0)