feat(console): Console for runtime wifi configuration

This commit is contained in:
Abhik Roy
2023-12-07 20:26:47 +11:00
parent a6845f4cdd
commit 194d1179bf
14 changed files with 474 additions and 1 deletions

View File

@ -0,0 +1,14 @@
# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Unlicense OR CC0-1.0
# -*- coding: utf-8 -*-
import pytest
@pytest.mark.esp32
def test_examples_ifconfig_command(dut):
dut.expect('esp>', timeout=30)
dut.write('wifi show network')
dut.expect(r'Showing Wifi networks', timeout=30)
dut.expect('esp>', timeout=30)