init
This commit is contained in:
38
.devcontainer/Dockerfile
Normal file
38
.devcontainer/Dockerfile
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
FROM espressif/idf
|
||||||
|
|
||||||
|
ARG DEBIAN_FRONTEND=nointeractive
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt install -y -q \
|
||||||
|
cmake \
|
||||||
|
git \
|
||||||
|
hwdata \
|
||||||
|
libglib2.0-0 \
|
||||||
|
libnuma1 \
|
||||||
|
libpixman-1-0 \
|
||||||
|
linux-tools-virtual \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
RUN update-alternatives --install /usr/local/bin/usbip usbip `ls /usr/lib/linux-tools/*/usbip | tail -n1` 20
|
||||||
|
|
||||||
|
# QEMU
|
||||||
|
ENV QEMU_REL=esp-develop-20220919
|
||||||
|
ENV QEMU_SHA256=f6565d3f0d1e463a63a7f81aec94cce62df662bd42fc7606de4b4418ed55f870
|
||||||
|
ENV QEMU_DIST=qemu-${QEMU_REL}.tar.bz2
|
||||||
|
ENV QEMU_URL=https://github.com/espressif/qemu/releases/download/${QEMU_REL}/${QEMU_DIST}
|
||||||
|
|
||||||
|
ENV LC_ALL=C.UTF-8
|
||||||
|
ENV LANG=C.UTF-8
|
||||||
|
|
||||||
|
RUN wget --no-verbose ${QEMU_URL} \
|
||||||
|
&& echo "${QEMU_SHA256} *${QEMU_DIST}" | sha256sum --check --strict - \
|
||||||
|
&& tar -xf $QEMU_DIST -C /opt \
|
||||||
|
&& rm ${QEMU_DIST}
|
||||||
|
|
||||||
|
ENV PATH=/opt/qemu/bin:${PATH}
|
||||||
|
|
||||||
|
RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc
|
||||||
|
|
||||||
|
ENTRYPOINT [ "/opt/esp/entrypoint.sh" ]
|
||||||
|
|
||||||
|
CMD ["/bin/bash"]
|
||||||
29
.devcontainer/devcontainer.json
Normal file
29
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
||||||
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.183.0/containers/ubuntu
|
||||||
|
{
|
||||||
|
"name": "ESP-IDF QEMU",
|
||||||
|
"build": {
|
||||||
|
"dockerfile": "Dockerfile"
|
||||||
|
},
|
||||||
|
// Add the IDs of extensions you want installed when the container is created.
|
||||||
|
"extensions": [
|
||||||
|
"ms-vscode.cpptools",
|
||||||
|
"espressif.esp-idf-extension"
|
||||||
|
],
|
||||||
|
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces,type=bind",
|
||||||
|
/* the path of workspace folder to be opened after container is running
|
||||||
|
*/
|
||||||
|
"workspaceFolder": "/workspaces",
|
||||||
|
"mounts": [
|
||||||
|
"source=extensionCache,target=/root/.vscode-server/extensions,type=volume"
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"terminal.integrated.defaultProfile.linux": "bash",
|
||||||
|
"idf.espIdfPath": "/opt/esp/idf",
|
||||||
|
"idf.customExtraPaths": "",
|
||||||
|
"idf.pythonBinPath": "/opt/esp/python_env/idf5.1_py3.8_env/bin/python",
|
||||||
|
"idf.toolsPath": "/opt/esp",
|
||||||
|
"idf.gitPath": "/usr/bin/git"
|
||||||
|
},
|
||||||
|
"runArgs": ["--privileged"]
|
||||||
|
}
|
||||||
28
.vscode/c_cpp_properties.json
vendored
Normal file
28
.vscode/c_cpp_properties.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "ESP-IDF",
|
||||||
|
"compilerPath": "C:\\Users\\PeterDwyer\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe",
|
||||||
|
"cStandard": "c11",
|
||||||
|
"cppStandard": "c++17",
|
||||||
|
"includePath": [
|
||||||
|
"${config:idf.espIdfPath}/components/**",
|
||||||
|
"${config:idf.espIdfPathWin}/components/**",
|
||||||
|
"${config:idf.espAdfPath}/components/**",
|
||||||
|
"${config:idf.espAdfPathWin}/components/**",
|
||||||
|
"${workspaceFolder}/**"
|
||||||
|
],
|
||||||
|
"browse": {
|
||||||
|
"path": [
|
||||||
|
"${config:idf.espIdfPath}/components",
|
||||||
|
"${config:idf.espIdfPathWin}/components",
|
||||||
|
"${config:idf.espAdfPath}/components/**",
|
||||||
|
"${config:idf.espAdfPathWin}/components/**",
|
||||||
|
"${workspaceFolder}"
|
||||||
|
],
|
||||||
|
"limitSymbolsToIncludedHeaders": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
||||||
10
.vscode/launch.json
vendored
Normal file
10
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "espidf",
|
||||||
|
"name": "Launch",
|
||||||
|
"request": "launch"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
9
.vscode/settings.json
vendored
Normal file
9
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"C_Cpp.intelliSenseEngine": "Tag Parser",
|
||||||
|
"idf.adapterTargetName": "esp32c6",
|
||||||
|
"idf.openOcdConfigs": [
|
||||||
|
"board/esp32c6-builtin.cfg"
|
||||||
|
],
|
||||||
|
"idf.flashType": "UART",
|
||||||
|
"idf.portWin": "COM3"
|
||||||
|
}
|
||||||
300
.vscode/tasks.json
vendored
Normal file
300
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,300 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Build - Build project",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py build",
|
||||||
|
"windows": {
|
||||||
|
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py build",
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
{
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": [
|
||||||
|
"relative",
|
||||||
|
"${workspaceFolder}"
|
||||||
|
],
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^\\.\\.(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^[^\\.](.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Set ESP-IDF Target",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${command:espIdf.setTarget}",
|
||||||
|
"problemMatcher": {
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(.*):(//d+):(//d+)://s+(warning|error)://s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Clean - Clean the project",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py fullclean",
|
||||||
|
"windows": {
|
||||||
|
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py fullclean",
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
{
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": [
|
||||||
|
"relative",
|
||||||
|
"${workspaceFolder}"
|
||||||
|
],
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^\\.\\.(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^[^\\.](.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Flash - Flash the device",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} -b ${config:idf.flashBaudRate} flash",
|
||||||
|
"windows": {
|
||||||
|
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py flash -p ${config:idf.portWin} -b ${config:idf.flashBaudRate}",
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
{
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": [
|
||||||
|
"relative",
|
||||||
|
"${workspaceFolder}"
|
||||||
|
],
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^\\.\\.(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^[^\\.](.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Monitor: Start the monitor",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} monitor",
|
||||||
|
"windows": {
|
||||||
|
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py -p ${config:idf.portWin} monitor",
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
{
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": [
|
||||||
|
"relative",
|
||||||
|
"${workspaceFolder}"
|
||||||
|
],
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^\\.\\.(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^[^\\.](.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dependsOn": "Flash - Flash the device"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "OpenOCD: Start openOCD",
|
||||||
|
"type": "shell",
|
||||||
|
"presentation": {
|
||||||
|
"echo": true,
|
||||||
|
"reveal": "never",
|
||||||
|
"focus": false,
|
||||||
|
"panel": "new"
|
||||||
|
},
|
||||||
|
"command": "openocd -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}",
|
||||||
|
"windows": {
|
||||||
|
"command": "openocd.exe -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}",
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": {
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "adapter",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${config:idf.pythonBinPath}",
|
||||||
|
"isBackground": true,
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH}:${config:idf.customExtraPaths}",
|
||||||
|
"PYTHONPATH": "${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": {
|
||||||
|
"background": {
|
||||||
|
"beginsPattern": "\bDEBUG_ADAPTER_STARTED\b",
|
||||||
|
"endsPattern": "DEBUG_ADAPTER_READY2CONNECT",
|
||||||
|
"activeOnStart": true
|
||||||
|
},
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "(\\d+)-(\\d+)-(\\d+)\\s(\\d+):(\\d+):(\\d+),(\\d+)\\s-(.+)\\s(ERROR)",
|
||||||
|
"file": 8,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 9
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"args": [
|
||||||
|
"${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter_main.py",
|
||||||
|
"-e",
|
||||||
|
"${workspaceFolder}/build/${command:espIdf.getProjectName}.elf",
|
||||||
|
"-s",
|
||||||
|
"${command:espIdf.getOpenOcdScriptValue}",
|
||||||
|
"-ip",
|
||||||
|
"localhost",
|
||||||
|
"-dn",
|
||||||
|
"${config:idf.adapterTargetName}",
|
||||||
|
"-om",
|
||||||
|
"connect_to_instance"
|
||||||
|
],
|
||||||
|
"windows": {
|
||||||
|
"command": "${config:idf.pythonBinPathWin}",
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${env:PATH};${config:idf.customExtraPaths}",
|
||||||
|
"PYTHONPATH": "${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
10
CMakeLists.txt
Normal file
10
CMakeLists.txt
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# The following lines of boilerplate have to be in your project's CMakeLists
|
||||||
|
# in this exact order for cmake to work correctly
|
||||||
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
|
# (Not part of the boilerplate)
|
||||||
|
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
|
||||||
|
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/common_components/protocol_examples_common)
|
||||||
|
|
||||||
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
|
project(simple)
|
||||||
61
README.md
Normal file
61
README.md
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
|
||||||
|
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
|
||||||
|
|
||||||
|
# Simple HTTPD Server Example
|
||||||
|
|
||||||
|
The Example consists of HTTPD server demo with demostration of URI handling :
|
||||||
|
1. URI \hello for GET command returns "Hello World!" message
|
||||||
|
2. URI \echo for POST command echoes back the POSTed message
|
||||||
|
|
||||||
|
## How to use example
|
||||||
|
|
||||||
|
### Hardware Required
|
||||||
|
|
||||||
|
* A development board with ESP32/ESP32-S2/ESP32-C3 SoC (e.g., ESP32-DevKitC, ESP-WROVER-KIT, etc.)
|
||||||
|
* A USB cable for power supply and programming
|
||||||
|
|
||||||
|
### Configure the project
|
||||||
|
|
||||||
|
```
|
||||||
|
idf.py menuconfig
|
||||||
|
```
|
||||||
|
* Open the project configuration menu (`idf.py menuconfig`) to configure Wi-Fi or Ethernet. See "Establishing Wi-Fi or Ethernet Connection" section in [examples/protocols/README.md](../../README.md) for more details.
|
||||||
|
|
||||||
|
### Build and Flash
|
||||||
|
|
||||||
|
Build the project and flash it to the board, then run monitor tool to view serial output:
|
||||||
|
|
||||||
|
```
|
||||||
|
idf.py -p PORT flash monitor
|
||||||
|
```
|
||||||
|
|
||||||
|
(Replace PORT with the name of the serial port to use.)
|
||||||
|
|
||||||
|
(To exit the serial monitor, type ``Ctrl-]``.)
|
||||||
|
|
||||||
|
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
|
||||||
|
|
||||||
|
### Test the example :
|
||||||
|
* run the test script : "python scripts/client.py \<IP\> \<port\> \<MSG\>"
|
||||||
|
* the provided test script first does a GET \hello and displays the response
|
||||||
|
* the script does a POST to \echo with the user input \<MSG\> and displays the response
|
||||||
|
* or use curl (asssuming IP is 192.168.43.130):
|
||||||
|
1. "curl 192.168.43.130:80/hello" - tests the GET "\hello" handler
|
||||||
|
2. "curl -X POST --data-binary @anyfile 192.168.43.130:80/echo > tmpfile"
|
||||||
|
* "anyfile" is the file being sent as request body and "tmpfile" is where the body of the response is saved
|
||||||
|
* since the server echoes back the request body, the two files should be same, as can be confirmed using : "cmp anyfile tmpfile"
|
||||||
|
3. "curl -X PUT -d "0" 192.168.43.130:80/ctrl" - disable /hello and /echo handlers
|
||||||
|
4. "curl -X PUT -d "1" 192.168.43.130:80/ctrl" - enable /hello and /echo handlers
|
||||||
|
|
||||||
|
## Example Output
|
||||||
|
```
|
||||||
|
I (9580) example_connect: - IPv4 address: 192.168.194.219
|
||||||
|
I (9580) example_connect: - IPv6 address: fe80:0000:0000:0000:266f:28ff:fe80:2c74, type: ESP_IP6_ADDR_IS_LINK_LOCAL
|
||||||
|
I (9590) example: Starting server on port: '80'
|
||||||
|
I (9600) example: Registering URI handlers
|
||||||
|
I (66450) example: Found header => Host: 192.168.194.219
|
||||||
|
I (66460) example: Request headers lost
|
||||||
|
```
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
* If the server log shows "httpd_parse: parse_block: request URI/header too long", especially when handling POST requests, then you probably need to increase HTTPD_MAX_REQ_HDR_LEN, which you can find in the project configuration menu (`idf.py menuconfig`): Component config -> HTTP Server -> Max HTTP Request Header Length
|
||||||
2
main/CMakeLists.txt
Normal file
2
main/CMakeLists.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
idf_component_register(SRCS "main.c" "ir_nec_encoder.c"
|
||||||
|
INCLUDE_DIRS ".")
|
||||||
29
main/Kconfig.projbuild
Normal file
29
main/Kconfig.projbuild
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
menu "Example Configuration"
|
||||||
|
|
||||||
|
config EXAMPLE_BASIC_AUTH
|
||||||
|
bool "Basic Authentication"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
Basic Authentication is a method for an HTTP user agent (e.g. a web browser)
|
||||||
|
to provide a user name and password when making a request. It is the simplest
|
||||||
|
technique for enforcing access controls to web resources. because it doesn't
|
||||||
|
require cookies, session identifiers, or login pages; rather, it uses standard
|
||||||
|
fields in the HTTP header.
|
||||||
|
Note that, Basic Authentication is not encrypted channel and also easy to retrieve
|
||||||
|
credentials as they are sent in plain text format.
|
||||||
|
|
||||||
|
config EXAMPLE_BASIC_AUTH_USERNAME
|
||||||
|
string "Basic Authenticate User Name"
|
||||||
|
depends on EXAMPLE_BASIC_AUTH
|
||||||
|
default "ESP32"
|
||||||
|
help
|
||||||
|
The client's user name which used for basic authenticate.
|
||||||
|
|
||||||
|
config EXAMPLE_BASIC_AUTH_PASSWORD
|
||||||
|
string "Basic Authenticate Password"
|
||||||
|
depends on EXAMPLE_BASIC_AUTH
|
||||||
|
default "ESP32"
|
||||||
|
help
|
||||||
|
The client's password which used for basic authenticate.
|
||||||
|
|
||||||
|
endmenu
|
||||||
21
main/candle.txt
Normal file
21
main/candle.txt
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
Power:
|
||||||
|
|
||||||
|
on: Address=B708, Command=FF00
|
||||||
|
off: Address=B708, Command=FD02
|
||||||
|
|
||||||
|
Timer:
|
||||||
|
|
||||||
|
2H: Address=B708, Command=FB04
|
||||||
|
4H: Address=B708, Command=F906
|
||||||
|
6H: Address=B708, Command=F708
|
||||||
|
8H: Address=B708, Command=F50A
|
||||||
|
|
||||||
|
Mode:
|
||||||
|
|
||||||
|
Candle: Address=B708, Command=F30C
|
||||||
|
Light: Address=B708, Command=F10E
|
||||||
|
|
||||||
|
Dim:
|
||||||
|
|
||||||
|
Minus: Address=B708, Command=EF10
|
||||||
|
plus: Address=B708, Command=ED12
|
||||||
154
main/ir_nec_encoder.c
Normal file
154
main/ir_nec_encoder.c
Normal file
@@ -0,0 +1,154 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "esp_check.h"
|
||||||
|
#include "ir_nec_encoder.h"
|
||||||
|
|
||||||
|
static const char *TAG = "nec_encoder";
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
rmt_encoder_t base; // the base "class", declares the standard encoder interface
|
||||||
|
rmt_encoder_t *copy_encoder; // use the copy_encoder to encode the leading and ending pulse
|
||||||
|
rmt_encoder_t *bytes_encoder; // use the bytes_encoder to encode the address and command data
|
||||||
|
rmt_symbol_word_t nec_leading_symbol; // NEC leading code with RMT representation
|
||||||
|
rmt_symbol_word_t nec_ending_symbol; // NEC ending code with RMT representation
|
||||||
|
int state;
|
||||||
|
} rmt_ir_nec_encoder_t;
|
||||||
|
|
||||||
|
static size_t rmt_encode_ir_nec(rmt_encoder_t *encoder, rmt_channel_handle_t channel, const void *primary_data, size_t data_size, rmt_encode_state_t *ret_state)
|
||||||
|
{
|
||||||
|
rmt_ir_nec_encoder_t *nec_encoder = __containerof(encoder, rmt_ir_nec_encoder_t, base);
|
||||||
|
rmt_encode_state_t session_state = 0;
|
||||||
|
rmt_encode_state_t state = 0;
|
||||||
|
size_t encoded_symbols = 0;
|
||||||
|
ir_nec_scan_code_t *scan_code = (ir_nec_scan_code_t *)primary_data;
|
||||||
|
rmt_encoder_handle_t copy_encoder = nec_encoder->copy_encoder;
|
||||||
|
rmt_encoder_handle_t bytes_encoder = nec_encoder->bytes_encoder;
|
||||||
|
switch (nec_encoder->state) {
|
||||||
|
case 0: // send leading code
|
||||||
|
encoded_symbols += copy_encoder->encode(copy_encoder, channel, &nec_encoder->nec_leading_symbol,
|
||||||
|
sizeof(rmt_symbol_word_t), &session_state);
|
||||||
|
if (session_state & RMT_ENCODING_COMPLETE) {
|
||||||
|
nec_encoder->state = 1; // we can only switch to next state when current encoder finished
|
||||||
|
}
|
||||||
|
if (session_state & RMT_ENCODING_MEM_FULL) {
|
||||||
|
state |= RMT_ENCODING_MEM_FULL;
|
||||||
|
goto out; // yield if there's no free space to put other encoding artifacts
|
||||||
|
}
|
||||||
|
// fall-through
|
||||||
|
case 1: // send address
|
||||||
|
encoded_symbols += bytes_encoder->encode(bytes_encoder, channel, &scan_code->address, sizeof(uint16_t), &session_state);
|
||||||
|
if (session_state & RMT_ENCODING_COMPLETE) {
|
||||||
|
nec_encoder->state = 2; // we can only switch to next state when current encoder finished
|
||||||
|
}
|
||||||
|
if (session_state & RMT_ENCODING_MEM_FULL) {
|
||||||
|
state |= RMT_ENCODING_MEM_FULL;
|
||||||
|
goto out; // yield if there's no free space to put other encoding artifacts
|
||||||
|
}
|
||||||
|
// fall-through
|
||||||
|
case 2: // send command
|
||||||
|
encoded_symbols += bytes_encoder->encode(bytes_encoder, channel, &scan_code->command, sizeof(uint16_t), &session_state);
|
||||||
|
if (session_state & RMT_ENCODING_COMPLETE) {
|
||||||
|
nec_encoder->state = 3; // we can only switch to next state when current encoder finished
|
||||||
|
}
|
||||||
|
if (session_state & RMT_ENCODING_MEM_FULL) {
|
||||||
|
state |= RMT_ENCODING_MEM_FULL;
|
||||||
|
goto out; // yield if there's no free space to put other encoding artifacts
|
||||||
|
}
|
||||||
|
// fall-through
|
||||||
|
case 3: // send ending code
|
||||||
|
encoded_symbols += copy_encoder->encode(copy_encoder, channel, &nec_encoder->nec_ending_symbol,
|
||||||
|
sizeof(rmt_symbol_word_t), &session_state);
|
||||||
|
if (session_state & RMT_ENCODING_COMPLETE) {
|
||||||
|
nec_encoder->state = 0; // back to the initial encoding session
|
||||||
|
state |= RMT_ENCODING_COMPLETE;
|
||||||
|
}
|
||||||
|
if (session_state & RMT_ENCODING_MEM_FULL) {
|
||||||
|
state |= RMT_ENCODING_MEM_FULL;
|
||||||
|
goto out; // yield if there's no free space to put other encoding artifacts
|
||||||
|
}
|
||||||
|
}
|
||||||
|
out:
|
||||||
|
*ret_state = state;
|
||||||
|
return encoded_symbols;
|
||||||
|
}
|
||||||
|
|
||||||
|
static esp_err_t rmt_del_ir_nec_encoder(rmt_encoder_t *encoder)
|
||||||
|
{
|
||||||
|
rmt_ir_nec_encoder_t *nec_encoder = __containerof(encoder, rmt_ir_nec_encoder_t, base);
|
||||||
|
rmt_del_encoder(nec_encoder->copy_encoder);
|
||||||
|
rmt_del_encoder(nec_encoder->bytes_encoder);
|
||||||
|
free(nec_encoder);
|
||||||
|
return ESP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static esp_err_t rmt_ir_nec_encoder_reset(rmt_encoder_t *encoder)
|
||||||
|
{
|
||||||
|
rmt_ir_nec_encoder_t *nec_encoder = __containerof(encoder, rmt_ir_nec_encoder_t, base);
|
||||||
|
rmt_encoder_reset(nec_encoder->copy_encoder);
|
||||||
|
rmt_encoder_reset(nec_encoder->bytes_encoder);
|
||||||
|
nec_encoder->state = 0;
|
||||||
|
return ESP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
esp_err_t rmt_new_ir_nec_encoder(const ir_nec_encoder_config_t *config, rmt_encoder_handle_t *ret_encoder)
|
||||||
|
{
|
||||||
|
esp_err_t ret = ESP_OK;
|
||||||
|
rmt_ir_nec_encoder_t *nec_encoder = NULL;
|
||||||
|
ESP_GOTO_ON_FALSE(config && ret_encoder, ESP_ERR_INVALID_ARG, err, TAG, "invalid argument");
|
||||||
|
nec_encoder = calloc(1, sizeof(rmt_ir_nec_encoder_t));
|
||||||
|
ESP_GOTO_ON_FALSE(nec_encoder, ESP_ERR_NO_MEM, err, TAG, "no mem for ir nec encoder");
|
||||||
|
nec_encoder->base.encode = rmt_encode_ir_nec;
|
||||||
|
nec_encoder->base.del = rmt_del_ir_nec_encoder;
|
||||||
|
nec_encoder->base.reset = rmt_ir_nec_encoder_reset;
|
||||||
|
|
||||||
|
rmt_copy_encoder_config_t copy_encoder_config = {};
|
||||||
|
ESP_GOTO_ON_ERROR(rmt_new_copy_encoder(©_encoder_config, &nec_encoder->copy_encoder), err, TAG, "create copy encoder failed");
|
||||||
|
|
||||||
|
// construct the leading code and ending code with RMT symbol format
|
||||||
|
nec_encoder->nec_leading_symbol = (rmt_symbol_word_t) {
|
||||||
|
.level0 = 1,
|
||||||
|
.duration0 = 9000ULL * config->resolution / 1000000,
|
||||||
|
.level1 = 0,
|
||||||
|
.duration1 = 4500ULL * config->resolution / 1000000,
|
||||||
|
};
|
||||||
|
nec_encoder->nec_ending_symbol = (rmt_symbol_word_t) {
|
||||||
|
.level0 = 1,
|
||||||
|
.duration0 = 560 * config->resolution / 1000000,
|
||||||
|
.level1 = 0,
|
||||||
|
.duration1 = 0x7FFF,
|
||||||
|
};
|
||||||
|
|
||||||
|
rmt_bytes_encoder_config_t bytes_encoder_config = {
|
||||||
|
.bit0 = {
|
||||||
|
.level0 = 1,
|
||||||
|
.duration0 = 560 * config->resolution / 1000000, // T0H=560us
|
||||||
|
.level1 = 0,
|
||||||
|
.duration1 = 560 * config->resolution / 1000000, // T0L=560us
|
||||||
|
},
|
||||||
|
.bit1 = {
|
||||||
|
.level0 = 1,
|
||||||
|
.duration0 = 560 * config->resolution / 1000000, // T1H=560us
|
||||||
|
.level1 = 0,
|
||||||
|
.duration1 = 1690 * config->resolution / 1000000, // T1L=1690us
|
||||||
|
},
|
||||||
|
};
|
||||||
|
ESP_GOTO_ON_ERROR(rmt_new_bytes_encoder(&bytes_encoder_config, &nec_encoder->bytes_encoder), err, TAG, "create bytes encoder failed");
|
||||||
|
|
||||||
|
*ret_encoder = &nec_encoder->base;
|
||||||
|
return ESP_OK;
|
||||||
|
err:
|
||||||
|
if (nec_encoder) {
|
||||||
|
if (nec_encoder->bytes_encoder) {
|
||||||
|
rmt_del_encoder(nec_encoder->bytes_encoder);
|
||||||
|
}
|
||||||
|
if (nec_encoder->copy_encoder) {
|
||||||
|
rmt_del_encoder(nec_encoder->copy_encoder);
|
||||||
|
}
|
||||||
|
free(nec_encoder);
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
44
main/ir_nec_encoder.h
Normal file
44
main/ir_nec_encoder.h
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include "driver/rmt_encoder.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief IR NEC scan code representation
|
||||||
|
*/
|
||||||
|
typedef struct {
|
||||||
|
uint16_t address;
|
||||||
|
uint16_t command;
|
||||||
|
} ir_nec_scan_code_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Type of IR NEC encoder configuration
|
||||||
|
*/
|
||||||
|
typedef struct {
|
||||||
|
uint32_t resolution; /*!< Encoder resolution, in Hz */
|
||||||
|
} ir_nec_encoder_config_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Create RMT encoder for encoding IR NEC frame into RMT symbols
|
||||||
|
*
|
||||||
|
* @param[in] config Encoder configuration
|
||||||
|
* @param[out] ret_encoder Returned encoder handle
|
||||||
|
* @return
|
||||||
|
* - ESP_ERR_INVALID_ARG for any invalid arguments
|
||||||
|
* - ESP_ERR_NO_MEM out of memory when creating IR NEC encoder
|
||||||
|
* - ESP_OK if creating encoder successfully
|
||||||
|
*/
|
||||||
|
esp_err_t rmt_new_ir_nec_encoder(const ir_nec_encoder_config_t *config, rmt_encoder_handle_t *ret_encoder);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
225
main/ir_nec_transceiver_main.c
Normal file
225
main/ir_nec_transceiver_main.c
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "freertos/FreeRTOS.h"
|
||||||
|
#include "freertos/task.h"
|
||||||
|
#include "freertos/queue.h"
|
||||||
|
#include "esp_log.h"
|
||||||
|
#include "driver/rmt_tx.h"
|
||||||
|
#include "driver/rmt_rx.h"
|
||||||
|
#include "ir_nec_encoder.h"
|
||||||
|
|
||||||
|
#define EXAMPLE_IR_RESOLUTION_HZ 1000000 // 1MHz resolution, 1 tick = 1us
|
||||||
|
#define EXAMPLE_IR_TX_GPIO_NUM 18
|
||||||
|
#define EXAMPLE_IR_RX_GPIO_NUM 19
|
||||||
|
#define EXAMPLE_IR_NEC_DECODE_MARGIN 200 // Tolerance for parsing RMT symbols into bit stream
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief NEC timing spec
|
||||||
|
*/
|
||||||
|
#define NEC_LEADING_CODE_DURATION_0 9000
|
||||||
|
#define NEC_LEADING_CODE_DURATION_1 4500
|
||||||
|
#define NEC_PAYLOAD_ZERO_DURATION_0 560
|
||||||
|
#define NEC_PAYLOAD_ZERO_DURATION_1 560
|
||||||
|
#define NEC_PAYLOAD_ONE_DURATION_0 560
|
||||||
|
#define NEC_PAYLOAD_ONE_DURATION_1 1690
|
||||||
|
#define NEC_REPEAT_CODE_DURATION_0 9000
|
||||||
|
#define NEC_REPEAT_CODE_DURATION_1 2250
|
||||||
|
|
||||||
|
static const char *TAG = "example";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Saving NEC decode results
|
||||||
|
*/
|
||||||
|
static uint16_t s_nec_code_address;
|
||||||
|
static uint16_t s_nec_code_command;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Check whether a duration is within expected range
|
||||||
|
*/
|
||||||
|
static inline bool nec_check_in_range(uint32_t signal_duration, uint32_t spec_duration)
|
||||||
|
{
|
||||||
|
return (signal_duration < (spec_duration + EXAMPLE_IR_NEC_DECODE_MARGIN)) &&
|
||||||
|
(signal_duration > (spec_duration - EXAMPLE_IR_NEC_DECODE_MARGIN));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Check whether a RMT symbol represents NEC logic zero
|
||||||
|
*/
|
||||||
|
static bool nec_parse_logic0(rmt_symbol_word_t *rmt_nec_symbols)
|
||||||
|
{
|
||||||
|
return nec_check_in_range(rmt_nec_symbols->duration0, NEC_PAYLOAD_ZERO_DURATION_0) &&
|
||||||
|
nec_check_in_range(rmt_nec_symbols->duration1, NEC_PAYLOAD_ZERO_DURATION_1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Check whether a RMT symbol represents NEC logic one
|
||||||
|
*/
|
||||||
|
static bool nec_parse_logic1(rmt_symbol_word_t *rmt_nec_symbols)
|
||||||
|
{
|
||||||
|
return nec_check_in_range(rmt_nec_symbols->duration0, NEC_PAYLOAD_ONE_DURATION_0) &&
|
||||||
|
nec_check_in_range(rmt_nec_symbols->duration1, NEC_PAYLOAD_ONE_DURATION_1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Decode RMT symbols into NEC address and command
|
||||||
|
*/
|
||||||
|
static bool nec_parse_frame(rmt_symbol_word_t *rmt_nec_symbols)
|
||||||
|
{
|
||||||
|
rmt_symbol_word_t *cur = rmt_nec_symbols;
|
||||||
|
uint16_t address = 0;
|
||||||
|
uint16_t command = 0;
|
||||||
|
bool valid_leading_code = nec_check_in_range(cur->duration0, NEC_LEADING_CODE_DURATION_0) &&
|
||||||
|
nec_check_in_range(cur->duration1, NEC_LEADING_CODE_DURATION_1);
|
||||||
|
if (!valid_leading_code) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
cur++;
|
||||||
|
for (int i = 0; i < 16; i++) {
|
||||||
|
if (nec_parse_logic1(cur)) {
|
||||||
|
address |= 1 << i;
|
||||||
|
} else if (nec_parse_logic0(cur)) {
|
||||||
|
address &= ~(1 << i);
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
cur++;
|
||||||
|
}
|
||||||
|
for (int i = 0; i < 16; i++) {
|
||||||
|
if (nec_parse_logic1(cur)) {
|
||||||
|
command |= 1 << i;
|
||||||
|
} else if (nec_parse_logic0(cur)) {
|
||||||
|
command &= ~(1 << i);
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
cur++;
|
||||||
|
}
|
||||||
|
// save address and command
|
||||||
|
s_nec_code_address = address;
|
||||||
|
s_nec_code_command = command;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Check whether the RMT symbols represent NEC repeat code
|
||||||
|
*/
|
||||||
|
static bool nec_parse_frame_repeat(rmt_symbol_word_t *rmt_nec_symbols)
|
||||||
|
{
|
||||||
|
return nec_check_in_range(rmt_nec_symbols->duration0, NEC_REPEAT_CODE_DURATION_0) &&
|
||||||
|
nec_check_in_range(rmt_nec_symbols->duration1, NEC_REPEAT_CODE_DURATION_1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Decode RMT symbols into NEC scan code and print the result
|
||||||
|
*/
|
||||||
|
static void example_parse_nec_frame(rmt_symbol_word_t *rmt_nec_symbols, size_t symbol_num)
|
||||||
|
{
|
||||||
|
printf("NEC frame start---\r\n");
|
||||||
|
for (size_t i = 0; i < symbol_num; i++) {
|
||||||
|
printf("{%d:%d},{%d:%d}\r\n", rmt_nec_symbols[i].level0, rmt_nec_symbols[i].duration0,
|
||||||
|
rmt_nec_symbols[i].level1, rmt_nec_symbols[i].duration1);
|
||||||
|
}
|
||||||
|
printf("---NEC frame end: ");
|
||||||
|
// decode RMT symbols
|
||||||
|
switch (symbol_num) {
|
||||||
|
case 34: // NEC normal frame
|
||||||
|
if (nec_parse_frame(rmt_nec_symbols)) {
|
||||||
|
printf("Address=%04X, Command=%04X\r\n\r\n", s_nec_code_address, s_nec_code_command);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 2: // NEC repeat frame
|
||||||
|
if (nec_parse_frame_repeat(rmt_nec_symbols)) {
|
||||||
|
printf("Address=%04X, Command=%04X, repeat\r\n\r\n", s_nec_code_address, s_nec_code_command);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
printf("Unknown NEC frame\r\n\r\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool example_rmt_rx_done_callback(rmt_channel_handle_t channel, const rmt_rx_done_event_data_t *edata, void *user_data)
|
||||||
|
{
|
||||||
|
BaseType_t high_task_wakeup = pdFALSE;
|
||||||
|
QueueHandle_t receive_queue = (QueueHandle_t)user_data;
|
||||||
|
// send the received RMT symbols to the parser task
|
||||||
|
xQueueSendFromISR(receive_queue, edata, &high_task_wakeup);
|
||||||
|
return high_task_wakeup == pdTRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
void app_main(void)
|
||||||
|
{
|
||||||
|
ESP_LOGI(TAG, "register RX done callback");
|
||||||
|
QueueHandle_t receive_queue = xQueueCreate(1, sizeof(rmt_rx_done_event_data_t));
|
||||||
|
assert(receive_queue);
|
||||||
|
rmt_rx_event_callbacks_t cbs = {
|
||||||
|
.on_recv_done = example_rmt_rx_done_callback,
|
||||||
|
};
|
||||||
|
ESP_ERROR_CHECK(rmt_rx_register_event_callbacks(rx_channel, &cbs, receive_queue));
|
||||||
|
|
||||||
|
// the following timing requirement is based on NEC protocol
|
||||||
|
rmt_receive_config_t receive_config = {
|
||||||
|
.signal_range_min_ns = 1250, // the shortest duration for NEC signal is 560us, 1250ns < 560us, valid signal won't be treated as noise
|
||||||
|
.signal_range_max_ns = 12000000, // the longest duration for NEC signal is 9000us, 12000000ns > 9000us, the receive won't stop early
|
||||||
|
};
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "create RMT TX channel");
|
||||||
|
rmt_tx_channel_config_t tx_channel_cfg = {
|
||||||
|
.clk_src = RMT_CLK_SRC_DEFAULT,
|
||||||
|
.resolution_hz = EXAMPLE_IR_RESOLUTION_HZ,
|
||||||
|
.mem_block_symbols = 64, // amount of RMT symbols that the channel can store at a time
|
||||||
|
.trans_queue_depth = 4, // number of transactions that allowed to pending in the background, this example won't queue multiple transactions, so queue depth > 1 is sufficient
|
||||||
|
.gpio_num = EXAMPLE_IR_TX_GPIO_NUM,
|
||||||
|
};
|
||||||
|
rmt_channel_handle_t tx_channel = NULL;
|
||||||
|
ESP_ERROR_CHECK(rmt_new_tx_channel(&tx_channel_cfg, &tx_channel));
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "modulate carrier to TX channel");
|
||||||
|
rmt_carrier_config_t carrier_cfg = {
|
||||||
|
.duty_cycle = 0.33,
|
||||||
|
.frequency_hz = 38000, // 38KHz
|
||||||
|
};
|
||||||
|
ESP_ERROR_CHECK(rmt_apply_carrier(tx_channel, &carrier_cfg));
|
||||||
|
|
||||||
|
// this example won't send NEC frames in a loop
|
||||||
|
rmt_transmit_config_t transmit_config = {
|
||||||
|
.loop_count = 0, // no loop
|
||||||
|
};
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "install IR NEC encoder");
|
||||||
|
ir_nec_encoder_config_t nec_encoder_cfg = {
|
||||||
|
.resolution = EXAMPLE_IR_RESOLUTION_HZ,
|
||||||
|
};
|
||||||
|
rmt_encoder_handle_t nec_encoder = NULL;
|
||||||
|
ESP_ERROR_CHECK(rmt_new_ir_nec_encoder(&nec_encoder_cfg, &nec_encoder));
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "enable RMT TX and RX channels");
|
||||||
|
ESP_ERROR_CHECK(rmt_enable(tx_channel));
|
||||||
|
ESP_ERROR_CHECK(rmt_enable(rx_channel));
|
||||||
|
|
||||||
|
// save the received RMT symbols
|
||||||
|
rmt_symbol_word_t raw_symbols[64]; // 64 symbols should be sufficient for a standard NEC frame
|
||||||
|
rmt_rx_done_event_data_t rx_data;
|
||||||
|
// ready to receive
|
||||||
|
ESP_ERROR_CHECK(rmt_receive(rx_channel, raw_symbols, sizeof(raw_symbols), &receive_config));
|
||||||
|
while (1) {
|
||||||
|
// wait for RX done signal
|
||||||
|
if (xQueueReceive(receive_queue, &rx_data, pdMS_TO_TICKS(1000)) == pdPASS) {
|
||||||
|
// parse the receive symbols and print the result
|
||||||
|
example_parse_nec_frame(rx_data.received_symbols, rx_data.num_symbols);
|
||||||
|
// start receive again
|
||||||
|
ESP_ERROR_CHECK(rmt_receive(rx_channel, raw_symbols, sizeof(raw_symbols), &receive_config));
|
||||||
|
} else {
|
||||||
|
// timeout, transmit predefined IR NEC packets
|
||||||
|
const ir_nec_scan_code_t scan_code = {
|
||||||
|
.address = 0x0440,
|
||||||
|
.command = 0x3003,
|
||||||
|
};
|
||||||
|
ESP_ERROR_CHECK(rmt_transmit(tx_channel, nec_encoder, &scan_code, sizeof(scan_code), &transmit_config));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
589
main/main.c
Normal file
589
main/main.c
Normal file
@@ -0,0 +1,589 @@
|
|||||||
|
/* Simple HTTP Server Example
|
||||||
|
|
||||||
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, this
|
||||||
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
||||||
|
CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <esp_wifi.h>
|
||||||
|
#include <esp_event.h>
|
||||||
|
#include <esp_log.h>
|
||||||
|
#include <esp_system.h>
|
||||||
|
#include <nvs_flash.h>
|
||||||
|
#include <sys/param.h>
|
||||||
|
#include "nvs_flash.h"
|
||||||
|
#include "esp_netif.h"
|
||||||
|
#include "esp_eth.h"
|
||||||
|
#include "protocol_examples_common.h"
|
||||||
|
#include "protocol_examples_utils.h"
|
||||||
|
#include "esp_tls_crypto.h"
|
||||||
|
#include <esp_http_server.h>
|
||||||
|
#include "freertos/FreeRTOS.h"
|
||||||
|
#include "freertos/task.h"
|
||||||
|
#include "freertos/queue.h"
|
||||||
|
#include "esp_log.h"
|
||||||
|
#include "driver/rmt_tx.h"
|
||||||
|
#include "driver/rmt_rx.h"
|
||||||
|
#include "ir_nec_encoder.h"
|
||||||
|
|
||||||
|
#define EXAMPLE_IR_RESOLUTION_HZ 1000000 // 1MHz resolution, 1 tick = 1us
|
||||||
|
#define EXAMPLE_IR_TX_GPIO_NUM 18
|
||||||
|
#define EXAMPLE_IR_RX_GPIO_NUM 19
|
||||||
|
#define EXAMPLE_IR_NEC_DECODE_MARGIN 200 // Tolerance for parsing RMT symbols into bit stream
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief NEC timing spec
|
||||||
|
*/
|
||||||
|
#define NEC_LEADING_CODE_DURATION_0 9000
|
||||||
|
#define NEC_LEADING_CODE_DURATION_1 4500
|
||||||
|
#define NEC_PAYLOAD_ZERO_DURATION_0 560
|
||||||
|
#define NEC_PAYLOAD_ZERO_DURATION_1 560
|
||||||
|
#define NEC_PAYLOAD_ONE_DURATION_0 560
|
||||||
|
#define NEC_PAYLOAD_ONE_DURATION_1 1690
|
||||||
|
#define NEC_REPEAT_CODE_DURATION_0 9000
|
||||||
|
#define NEC_REPEAT_CODE_DURATION_1 2250
|
||||||
|
|
||||||
|
#define EXAMPLE_HTTP_QUERY_KEY_MAX_LEN (64)
|
||||||
|
|
||||||
|
rmt_tx_channel_config_t tx_channel_cfg = {
|
||||||
|
.clk_src = RMT_CLK_SRC_DEFAULT,
|
||||||
|
.resolution_hz = EXAMPLE_IR_RESOLUTION_HZ,
|
||||||
|
.mem_block_symbols = 64, // amount of RMT symbols that the channel can store at a time
|
||||||
|
.trans_queue_depth = 4, // number of transactions that allowed to pending in the background, this example won't queue multiple transactions, so queue depth > 1 is sufficient
|
||||||
|
.gpio_num = EXAMPLE_IR_TX_GPIO_NUM,
|
||||||
|
};
|
||||||
|
rmt_channel_handle_t tx_channel = NULL;
|
||||||
|
rmt_carrier_config_t carrier_cfg = {
|
||||||
|
.duty_cycle = 0.33,
|
||||||
|
.frequency_hz = 38000, // 38KHz
|
||||||
|
};
|
||||||
|
ir_nec_encoder_config_t nec_encoder_cfg = {
|
||||||
|
.resolution = EXAMPLE_IR_RESOLUTION_HZ,
|
||||||
|
};
|
||||||
|
rmt_encoder_handle_t nec_encoder = NULL;
|
||||||
|
rmt_transmit_config_t transmit_config = {
|
||||||
|
.loop_count = 0, // no loop
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
QueueHandle_t receive_queue = xQueueCreate(1, sizeof(rmt_rx_done_event_data_t));
|
||||||
|
rmt_rx_done_event_data_t rx_data;
|
||||||
|
|
||||||
|
static uint16_t s_nec_code_address;
|
||||||
|
static uint16_t s_nec_code_command;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Check whether a duration is within expected range
|
||||||
|
*/
|
||||||
|
static inline bool nec_check_in_range(uint32_t signal_duration, uint32_t spec_duration)
|
||||||
|
{
|
||||||
|
return (signal_duration < (spec_duration + EXAMPLE_IR_NEC_DECODE_MARGIN)) &&
|
||||||
|
(signal_duration > (spec_duration - EXAMPLE_IR_NEC_DECODE_MARGIN));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Check whether a RMT symbol represents NEC logic zero
|
||||||
|
*/
|
||||||
|
static bool nec_parse_logic0(rmt_symbol_word_t *rmt_nec_symbols)
|
||||||
|
{
|
||||||
|
return nec_check_in_range(rmt_nec_symbols->duration0, NEC_PAYLOAD_ZERO_DURATION_0) &&
|
||||||
|
nec_check_in_range(rmt_nec_symbols->duration1, NEC_PAYLOAD_ZERO_DURATION_1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Check whether a RMT symbol represents NEC logic one
|
||||||
|
*/
|
||||||
|
static bool nec_parse_logic1(rmt_symbol_word_t *rmt_nec_symbols)
|
||||||
|
{
|
||||||
|
return nec_check_in_range(rmt_nec_symbols->duration0, NEC_PAYLOAD_ONE_DURATION_0) &&
|
||||||
|
nec_check_in_range(rmt_nec_symbols->duration1, NEC_PAYLOAD_ONE_DURATION_1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Decode RMT symbols into NEC address and command
|
||||||
|
*/
|
||||||
|
static bool nec_parse_frame(rmt_symbol_word_t *rmt_nec_symbols)
|
||||||
|
{
|
||||||
|
rmt_symbol_word_t *cur = rmt_nec_symbols;
|
||||||
|
uint16_t address = 0;
|
||||||
|
uint16_t command = 0;
|
||||||
|
bool valid_leading_code = nec_check_in_range(cur->duration0, NEC_LEADING_CODE_DURATION_0) &&
|
||||||
|
nec_check_in_range(cur->duration1, NEC_LEADING_CODE_DURATION_1);
|
||||||
|
if (!valid_leading_code) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
cur++;
|
||||||
|
for (int i = 0; i < 16; i++) {
|
||||||
|
if (nec_parse_logic1(cur)) {
|
||||||
|
address |= 1 << i;
|
||||||
|
} else if (nec_parse_logic0(cur)) {
|
||||||
|
address &= ~(1 << i);
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
cur++;
|
||||||
|
}
|
||||||
|
for (int i = 0; i < 16; i++) {
|
||||||
|
if (nec_parse_logic1(cur)) {
|
||||||
|
command |= 1 << i;
|
||||||
|
} else if (nec_parse_logic0(cur)) {
|
||||||
|
command &= ~(1 << i);
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
cur++;
|
||||||
|
}
|
||||||
|
// save address and command
|
||||||
|
s_nec_code_address = address;
|
||||||
|
s_nec_code_command = command;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Check whether the RMT symbols represent NEC repeat code
|
||||||
|
*/
|
||||||
|
static bool nec_parse_frame_repeat(rmt_symbol_word_t *rmt_nec_symbols)
|
||||||
|
{
|
||||||
|
return nec_check_in_range(rmt_nec_symbols->duration0, NEC_REPEAT_CODE_DURATION_0) &&
|
||||||
|
nec_check_in_range(rmt_nec_symbols->duration1, NEC_REPEAT_CODE_DURATION_1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void example_parse_nec_frame(rmt_symbol_word_t *rmt_nec_symbols, size_t symbol_num)
|
||||||
|
{
|
||||||
|
printf("NEC frame start---\r\n");
|
||||||
|
for (size_t i = 0; i < symbol_num; i++) {
|
||||||
|
printf("{%d:%d},{%d:%d}\r\n", rmt_nec_symbols[i].level0, rmt_nec_symbols[i].duration0,
|
||||||
|
rmt_nec_symbols[i].level1, rmt_nec_symbols[i].duration1);
|
||||||
|
}
|
||||||
|
printf("---NEC frame end: ");
|
||||||
|
// decode RMT symbols
|
||||||
|
switch (symbol_num) {
|
||||||
|
case 34: // NEC normal frame
|
||||||
|
if (nec_parse_frame(rmt_nec_symbols)) {
|
||||||
|
printf("Address=%04X, Command=%04X\r\n\r\n", s_nec_code_address, s_nec_code_command);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 2: // NEC repeat frame
|
||||||
|
if (nec_parse_frame_repeat(rmt_nec_symbols)) {
|
||||||
|
printf("Address=%04X, Command=%04X, repeat\r\n\r\n", s_nec_code_address, s_nec_code_command);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
printf("Unknown NEC frame\r\n\r\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* A simple example that demonstrates how to create GET and POST
|
||||||
|
* handlers for the web server.
|
||||||
|
*/
|
||||||
|
|
||||||
|
static const char *TAG = "example";
|
||||||
|
|
||||||
|
#if CONFIG_EXAMPLE_BASIC_AUTH
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
char *username;
|
||||||
|
char *password;
|
||||||
|
} basic_auth_info_t;
|
||||||
|
|
||||||
|
#define HTTPD_401 "401 UNAUTHORIZED" /*!< HTTP Response 401 */
|
||||||
|
|
||||||
|
static char *http_auth_basic(const char *username, const char *password)
|
||||||
|
{
|
||||||
|
int out;
|
||||||
|
char *user_info = NULL;
|
||||||
|
char *digest = NULL;
|
||||||
|
size_t n = 0;
|
||||||
|
asprintf(&user_info, "%s:%s", username, password);
|
||||||
|
if (!user_info) {
|
||||||
|
ESP_LOGE(TAG, "No enough memory for user information");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
esp_crypto_base64_encode(NULL, 0, &n, (const unsigned char *)user_info, strlen(user_info));
|
||||||
|
|
||||||
|
/* 6: The length of the "Basic " string
|
||||||
|
* n: Number of bytes for a base64 encode format
|
||||||
|
* 1: Number of bytes for a reserved which be used to fill zero
|
||||||
|
*/
|
||||||
|
digest = calloc(1, 6 + n + 1);
|
||||||
|
if (digest) {
|
||||||
|
strcpy(digest, "Basic ");
|
||||||
|
esp_crypto_base64_encode((unsigned char *)digest + 6, n, (size_t *)&out, (const unsigned char *)user_info, strlen(user_info));
|
||||||
|
}
|
||||||
|
free(user_info);
|
||||||
|
return digest;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* An HTTP GET handler */
|
||||||
|
static esp_err_t basic_auth_get_handler(httpd_req_t *req)
|
||||||
|
{
|
||||||
|
char *buf = NULL;
|
||||||
|
size_t buf_len = 0;
|
||||||
|
basic_auth_info_t *basic_auth_info = req->user_ctx;
|
||||||
|
|
||||||
|
buf_len = httpd_req_get_hdr_value_len(req, "Authorization") + 1;
|
||||||
|
if (buf_len > 1) {
|
||||||
|
buf = calloc(1, buf_len);
|
||||||
|
if (!buf) {
|
||||||
|
ESP_LOGE(TAG, "No enough memory for basic authorization");
|
||||||
|
return ESP_ERR_NO_MEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (httpd_req_get_hdr_value_str(req, "Authorization", buf, buf_len) == ESP_OK) {
|
||||||
|
ESP_LOGI(TAG, "Found header => Authorization: %s", buf);
|
||||||
|
} else {
|
||||||
|
ESP_LOGE(TAG, "No auth value received");
|
||||||
|
}
|
||||||
|
|
||||||
|
char *auth_credentials = http_auth_basic(basic_auth_info->username, basic_auth_info->password);
|
||||||
|
if (!auth_credentials) {
|
||||||
|
ESP_LOGE(TAG, "No enough memory for basic authorization credentials");
|
||||||
|
free(buf);
|
||||||
|
return ESP_ERR_NO_MEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strncmp(auth_credentials, buf, buf_len)) {
|
||||||
|
ESP_LOGE(TAG, "Not authenticated");
|
||||||
|
httpd_resp_set_status(req, HTTPD_401);
|
||||||
|
httpd_resp_set_type(req, "application/json");
|
||||||
|
httpd_resp_set_hdr(req, "Connection", "keep-alive");
|
||||||
|
httpd_resp_set_hdr(req, "WWW-Authenticate", "Basic realm=\"Hello\"");
|
||||||
|
httpd_resp_send(req, NULL, 0);
|
||||||
|
} else {
|
||||||
|
ESP_LOGI(TAG, "Authenticated!");
|
||||||
|
char *basic_auth_resp = NULL;
|
||||||
|
httpd_resp_set_status(req, HTTPD_200);
|
||||||
|
httpd_resp_set_type(req, "application/json");
|
||||||
|
httpd_resp_set_hdr(req, "Connection", "keep-alive");
|
||||||
|
asprintf(&basic_auth_resp, "{\"authenticated\": true,\"user\": \"%s\"}", basic_auth_info->username);
|
||||||
|
if (!basic_auth_resp) {
|
||||||
|
ESP_LOGE(TAG, "No enough memory for basic authorization response");
|
||||||
|
free(auth_credentials);
|
||||||
|
free(buf);
|
||||||
|
return ESP_ERR_NO_MEM;
|
||||||
|
}
|
||||||
|
httpd_resp_send(req, basic_auth_resp, strlen(basic_auth_resp));
|
||||||
|
free(basic_auth_resp);
|
||||||
|
}
|
||||||
|
free(auth_credentials);
|
||||||
|
free(buf);
|
||||||
|
} else {
|
||||||
|
ESP_LOGE(TAG, "No auth header received");
|
||||||
|
httpd_resp_set_status(req, HTTPD_401);
|
||||||
|
httpd_resp_set_type(req, "application/json");
|
||||||
|
httpd_resp_set_hdr(req, "Connection", "keep-alive");
|
||||||
|
httpd_resp_set_hdr(req, "WWW-Authenticate", "Basic realm=\"Hello\"");
|
||||||
|
httpd_resp_send(req, NULL, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
return ESP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static httpd_uri_t basic_auth = {
|
||||||
|
.uri = "/basic_auth",
|
||||||
|
.method = HTTP_GET,
|
||||||
|
.handler = basic_auth_get_handler,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void httpd_register_basic_auth(httpd_handle_t server)
|
||||||
|
{
|
||||||
|
basic_auth_info_t *basic_auth_info = calloc(1, sizeof(basic_auth_info_t));
|
||||||
|
if (basic_auth_info) {
|
||||||
|
basic_auth_info->username = CONFIG_EXAMPLE_BASIC_AUTH_USERNAME;
|
||||||
|
basic_auth_info->password = CONFIG_EXAMPLE_BASIC_AUTH_PASSWORD;
|
||||||
|
|
||||||
|
basic_auth.user_ctx = basic_auth_info;
|
||||||
|
httpd_register_uri_handler(server, &basic_auth);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* An HTTP GET handler */
|
||||||
|
static esp_err_t hello_get_handler(httpd_req_t *req)
|
||||||
|
{
|
||||||
|
char* buf;
|
||||||
|
size_t buf_len;
|
||||||
|
|
||||||
|
/* Get header value string length and allocate memory for length + 1,
|
||||||
|
* extra byte for null termination */
|
||||||
|
buf_len = httpd_req_get_hdr_value_len(req, "Host") + 1;
|
||||||
|
if (buf_len > 1) {
|
||||||
|
buf = malloc(buf_len);
|
||||||
|
/* Copy null terminated value string into buffer */
|
||||||
|
if (httpd_req_get_hdr_value_str(req, "Host", buf, buf_len) == ESP_OK) {
|
||||||
|
ESP_LOGI(TAG, "Found header => Host: %s", buf);
|
||||||
|
}
|
||||||
|
free(buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
buf_len = httpd_req_get_hdr_value_len(req, "Test-Header-2") + 1;
|
||||||
|
if (buf_len > 1) {
|
||||||
|
buf = malloc(buf_len);
|
||||||
|
if (httpd_req_get_hdr_value_str(req, "Test-Header-2", buf, buf_len) == ESP_OK) {
|
||||||
|
ESP_LOGI(TAG, "Found header => Test-Header-2: %s", buf);
|
||||||
|
}
|
||||||
|
free(buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
buf_len = httpd_req_get_hdr_value_len(req, "Test-Header-1") + 1;
|
||||||
|
if (buf_len > 1) {
|
||||||
|
buf = malloc(buf_len);
|
||||||
|
if (httpd_req_get_hdr_value_str(req, "Test-Header-1", buf, buf_len) == ESP_OK) {
|
||||||
|
ESP_LOGI(TAG, "Found header => Test-Header-1: %s", buf);
|
||||||
|
}
|
||||||
|
free(buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Read URL query string length and allocate memory for length + 1,
|
||||||
|
* extra byte for null termination */
|
||||||
|
buf_len = httpd_req_get_url_query_len(req) + 1;
|
||||||
|
if (buf_len > 1) {
|
||||||
|
buf = malloc(buf_len);
|
||||||
|
if (httpd_req_get_url_query_str(req, buf, buf_len) == ESP_OK) {
|
||||||
|
ESP_LOGI(TAG, "Found URL query => %s", buf);
|
||||||
|
char param[EXAMPLE_HTTP_QUERY_KEY_MAX_LEN], dec_param[EXAMPLE_HTTP_QUERY_KEY_MAX_LEN] = {0};
|
||||||
|
/* Get value of expected key from query string */
|
||||||
|
if (httpd_query_key_value(buf, "query1", param, sizeof(param)) == ESP_OK) {
|
||||||
|
ESP_LOGI(TAG, "Found URL query parameter => query1=%s", param);
|
||||||
|
example_uri_decode(dec_param, param, strnlen(param, EXAMPLE_HTTP_QUERY_KEY_MAX_LEN));
|
||||||
|
ESP_LOGI(TAG, "Decoded query parameter => %s", dec_param);
|
||||||
|
}
|
||||||
|
if (httpd_query_key_value(buf, "query3", param, sizeof(param)) == ESP_OK) {
|
||||||
|
ESP_LOGI(TAG, "Found URL query parameter => query3=%s", param);
|
||||||
|
example_uri_decode(dec_param, param, strnlen(param, EXAMPLE_HTTP_QUERY_KEY_MAX_LEN));
|
||||||
|
ESP_LOGI(TAG, "Decoded query parameter => %s", dec_param);
|
||||||
|
}
|
||||||
|
if (httpd_query_key_value(buf, "query2", param, sizeof(param)) == ESP_OK) {
|
||||||
|
ESP_LOGI(TAG, "Found URL query parameter => query2=%s", param);
|
||||||
|
example_uri_decode(dec_param, param, strnlen(param, EXAMPLE_HTTP_QUERY_KEY_MAX_LEN));
|
||||||
|
ESP_LOGI(TAG, "Decoded query parameter => %s", dec_param);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
free(buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Set some custom headers */
|
||||||
|
httpd_resp_set_hdr(req, "Custom-Header-1", "Custom-Value-1");
|
||||||
|
httpd_resp_set_hdr(req, "Custom-Header-2", "Custom-Value-2");
|
||||||
|
|
||||||
|
/* Send response with custom headers and body set as the
|
||||||
|
* string passed in user context*/
|
||||||
|
const char* resp_str = (const char*) req->user_ctx;
|
||||||
|
httpd_resp_send(req, resp_str, HTTPD_RESP_USE_STRLEN);
|
||||||
|
|
||||||
|
/* After sending the HTTP response the old HTTP request
|
||||||
|
* headers are lost. Check if HTTP request headers can be read now. */
|
||||||
|
if (httpd_req_get_hdr_value_len(req, "Host") == 0) {
|
||||||
|
ESP_LOGI(TAG, "Request headers lost");
|
||||||
|
}
|
||||||
|
return ESP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const httpd_uri_t hello = {
|
||||||
|
.uri = "/hello",
|
||||||
|
.method = HTTP_GET,
|
||||||
|
.handler = hello_get_handler,
|
||||||
|
/* Let's pass response string in user
|
||||||
|
* context to demonstrate it's usage */
|
||||||
|
.user_ctx = "Hello World!"
|
||||||
|
};
|
||||||
|
|
||||||
|
/* An HTTP POST handler */
|
||||||
|
static esp_err_t echo_post_handler(httpd_req_t *req)
|
||||||
|
{
|
||||||
|
char buf[100];
|
||||||
|
int ret, remaining = req->content_len;
|
||||||
|
|
||||||
|
while (remaining > 0) {
|
||||||
|
/* Read the data for the request */
|
||||||
|
if ((ret = httpd_req_recv(req, buf,
|
||||||
|
MIN(remaining, sizeof(buf)))) <= 0) {
|
||||||
|
if (ret == HTTPD_SOCK_ERR_TIMEOUT) {
|
||||||
|
/* Retry receiving if timeout occurred */
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
return ESP_FAIL;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Send back the same data */
|
||||||
|
httpd_resp_send_chunk(req, buf, ret);
|
||||||
|
remaining -= ret;
|
||||||
|
|
||||||
|
/* Log data received */
|
||||||
|
ESP_LOGI(TAG, "=========== RECEIVED DATA ==========");
|
||||||
|
ESP_LOGI(TAG, "%.*s", ret, buf);
|
||||||
|
ESP_LOGI(TAG, "====================================");
|
||||||
|
}
|
||||||
|
|
||||||
|
// End response
|
||||||
|
httpd_resp_send_chunk(req, NULL, 0);
|
||||||
|
return ESP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const httpd_uri_t echo = {
|
||||||
|
.uri = "/echo",
|
||||||
|
.method = HTTP_POST,
|
||||||
|
.handler = echo_post_handler,
|
||||||
|
.user_ctx = NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
static esp_err_t candle_on_handler(httpd_req_t *req)
|
||||||
|
{
|
||||||
|
const char* resp_str = "Turning Candle On!!!!";
|
||||||
|
ESP_LOGI(TAG, "Turning Candle On!!!!");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const ir_nec_scan_code_t scan_code = {
|
||||||
|
.address = 0xB708,
|
||||||
|
.command = 0xFF00,
|
||||||
|
};
|
||||||
|
ESP_ERROR_CHECK(rmt_transmit(tx_channel, nec_encoder, &scan_code, sizeof(scan_code), &transmit_config));
|
||||||
|
|
||||||
|
if (xQueueReceive(receive_queue, &rx_data, pdMS_TO_TICKS(1000)) == pdPASS) {
|
||||||
|
// parse the receive symbols and print the result
|
||||||
|
example_parse_nec_frame(rx_data.received_symbols, rx_data.num_symbols);
|
||||||
|
// start receive again
|
||||||
|
ESP_ERROR_CHECK(rmt_receive(rx_channel, raw_symbols, sizeof(raw_symbols), &receive_config));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
httpd_resp_send(req, resp_str, HTTPD_RESP_USE_STRLEN);
|
||||||
|
return ESP_OK;
|
||||||
|
httpd_resp_send_chunk(req, NULL, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const httpd_uri_t candle_on = {
|
||||||
|
.uri = "/candle_on",
|
||||||
|
.method = HTTP_GET,
|
||||||
|
.handler = candle_on_handler,
|
||||||
|
.user_ctx = NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/* This handler allows the custom error handling functionality to be
|
||||||
|
* tested from client side. For that, when a PUT request 0 is sent to
|
||||||
|
* URI /ctrl, the /hello and /echo URIs are unregistered and following
|
||||||
|
* custom error handler http_404_error_handler() is registered.
|
||||||
|
* Afterwards, when /hello or /echo is requested, this custom error
|
||||||
|
* handler is invoked which, after sending an error message to client,
|
||||||
|
* either closes the underlying socket (when requested URI is /echo)
|
||||||
|
* or keeps it open (when requested URI is /hello). This allows the
|
||||||
|
* client to infer if the custom error handler is functioning as expected
|
||||||
|
* by observing the socket state.
|
||||||
|
*/
|
||||||
|
esp_err_t http_404_error_handler(httpd_req_t *req, httpd_err_code_t err)
|
||||||
|
{
|
||||||
|
if (strcmp("/hello", req->uri) == 0) {
|
||||||
|
httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, "/hello URI is not available");
|
||||||
|
/* Return ESP_OK to keep underlying socket open */
|
||||||
|
return ESP_OK;
|
||||||
|
} else if (strcmp("/echo", req->uri) == 0) {
|
||||||
|
httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, "/echo URI is not available");
|
||||||
|
/* Return ESP_FAIL to close underlying socket */
|
||||||
|
return ESP_FAIL;
|
||||||
|
}
|
||||||
|
/* For any other URI send 404 and close socket */
|
||||||
|
httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, "Some 404 error message");
|
||||||
|
return ESP_FAIL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static httpd_handle_t start_webserver(void)
|
||||||
|
{
|
||||||
|
httpd_handle_t server = NULL;
|
||||||
|
httpd_config_t config = HTTPD_DEFAULT_CONFIG();
|
||||||
|
config.lru_purge_enable = true;
|
||||||
|
|
||||||
|
// Start the httpd server
|
||||||
|
ESP_LOGI(TAG, "Starting server on port: '%d'", config.server_port);
|
||||||
|
if (httpd_start(&server, &config) == ESP_OK) {
|
||||||
|
// Set URI handlers
|
||||||
|
ESP_LOGI(TAG, "Registering URI handlers");
|
||||||
|
httpd_register_uri_handler(server, &hello);
|
||||||
|
httpd_register_uri_handler(server, &echo);
|
||||||
|
httpd_register_uri_handler(server, &candle_on);
|
||||||
|
#if CONFIG_EXAMPLE_BASIC_AUTH
|
||||||
|
httpd_register_basic_auth(server);
|
||||||
|
#endif
|
||||||
|
return server;
|
||||||
|
}
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "Error starting server!");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static esp_err_t stop_webserver(httpd_handle_t server)
|
||||||
|
{
|
||||||
|
// Stop the httpd server
|
||||||
|
return httpd_stop(server);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void disconnect_handler(void* arg, esp_event_base_t event_base,
|
||||||
|
int32_t event_id, void* event_data)
|
||||||
|
{
|
||||||
|
httpd_handle_t* server = (httpd_handle_t*) arg;
|
||||||
|
if (*server) {
|
||||||
|
ESP_LOGI(TAG, "Stopping webserver");
|
||||||
|
if (stop_webserver(*server) == ESP_OK) {
|
||||||
|
*server = NULL;
|
||||||
|
} else {
|
||||||
|
ESP_LOGE(TAG, "Failed to stop http server");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void connect_handler(void* arg, esp_event_base_t event_base,
|
||||||
|
int32_t event_id, void* event_data)
|
||||||
|
{
|
||||||
|
httpd_handle_t* server = (httpd_handle_t*) arg;
|
||||||
|
if (*server == NULL) {
|
||||||
|
ESP_LOGI(TAG, "Starting webserver");
|
||||||
|
*server = start_webserver();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void app_main(void)
|
||||||
|
{
|
||||||
|
static httpd_handle_t server = NULL;
|
||||||
|
|
||||||
|
ESP_ERROR_CHECK(nvs_flash_init());
|
||||||
|
ESP_ERROR_CHECK(esp_netif_init());
|
||||||
|
ESP_ERROR_CHECK(esp_event_loop_create_default());
|
||||||
|
|
||||||
|
/* This helper function configures Wi-Fi or Ethernet, as selected in menuconfig.
|
||||||
|
* Read "Establishing Wi-Fi or Ethernet Connection" section in
|
||||||
|
* examples/protocols/README.md for more information about this function.
|
||||||
|
*/
|
||||||
|
ESP_ERROR_CHECK(example_connect());
|
||||||
|
|
||||||
|
/* Register event handlers to stop the server when Wi-Fi or Ethernet is disconnected,
|
||||||
|
* and re-start it upon connection.
|
||||||
|
*/
|
||||||
|
#ifdef CONFIG_EXAMPLE_CONNECT_WIFI
|
||||||
|
ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &connect_handler, &server));
|
||||||
|
ESP_ERROR_CHECK(esp_event_handler_register(WIFI_EVENT, WIFI_EVENT_STA_DISCONNECTED, &disconnect_handler, &server));
|
||||||
|
#endif // CONFIG_EXAMPLE_CONNECT_WIFI
|
||||||
|
#ifdef CONFIG_EXAMPLE_CONNECT_ETHERNET
|
||||||
|
ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, &connect_handler, &server));
|
||||||
|
ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ETHERNET_EVENT_DISCONNECTED, &disconnect_handler, &server));
|
||||||
|
#endif // CONFIG_EXAMPLE_CONNECT_ETHERNET
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "create RMT TX channel");
|
||||||
|
|
||||||
|
|
||||||
|
ESP_ERROR_CHECK(rmt_new_ir_nec_encoder(&nec_encoder_cfg, &nec_encoder));
|
||||||
|
ESP_ERROR_CHECK(rmt_new_tx_channel(&tx_channel_cfg, &tx_channel));
|
||||||
|
ESP_ERROR_CHECK(rmt_apply_carrier(tx_channel, &carrier_cfg));
|
||||||
|
ESP_ERROR_CHECK(rmt_enable(tx_channel));
|
||||||
|
|
||||||
|
/* Start the server for the first time */
|
||||||
|
server = start_webserver();
|
||||||
|
}
|
||||||
173
pytest_http_server_simple.py
Normal file
173
pytest_http_server_simple.py
Normal file
@@ -0,0 +1,173 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
#
|
||||||
|
# SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
import random
|
||||||
|
import socket
|
||||||
|
import string
|
||||||
|
import sys
|
||||||
|
import threading
|
||||||
|
import time
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
try:
|
||||||
|
from idf_http_server_test import client
|
||||||
|
except ModuleNotFoundError:
|
||||||
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', '..', '..', 'tools', 'ci', 'python_packages'))
|
||||||
|
from idf_http_server_test import client
|
||||||
|
|
||||||
|
from common_test_methods import get_env_config_variable
|
||||||
|
from pytest_embedded import Dut
|
||||||
|
|
||||||
|
|
||||||
|
class http_client_thread(threading.Thread):
|
||||||
|
def __init__(self, ip: str, port: int, delay: int) -> None:
|
||||||
|
threading.Thread.__init__(self)
|
||||||
|
self.ip = ip
|
||||||
|
self.port = port
|
||||||
|
self.delay = delay
|
||||||
|
self.exc = 0
|
||||||
|
|
||||||
|
# Thread function used to open a socket and wait for specific amount of time before returning
|
||||||
|
def open_connection(self, ip: str, port: int, delay: int) -> None:
|
||||||
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
|
s.settimeout(delay)
|
||||||
|
s.connect((ip, port))
|
||||||
|
time.sleep(delay)
|
||||||
|
|
||||||
|
def run(self) -> None:
|
||||||
|
try:
|
||||||
|
self.open_connection(self.ip, self.port, self.delay)
|
||||||
|
except socket.timeout:
|
||||||
|
self.exc = 1
|
||||||
|
|
||||||
|
def join(self, timeout=None): # type: ignore
|
||||||
|
threading.Thread.join(self)
|
||||||
|
if self.exc:
|
||||||
|
raise socket.timeout
|
||||||
|
|
||||||
|
|
||||||
|
# When running on local machine execute the following before running this script
|
||||||
|
# > make app bootloader
|
||||||
|
# > make print_flash_cmd | tail -n 1 > build/download.config
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.esp32
|
||||||
|
@pytest.mark.esp32c3
|
||||||
|
@pytest.mark.esp32s3
|
||||||
|
@pytest.mark.wifi_router
|
||||||
|
def test_examples_protocol_http_server_simple(dut: Dut) -> None:
|
||||||
|
|
||||||
|
# Get binary file
|
||||||
|
binary_file = os.path.join(dut.app.binary_path, 'simple.bin')
|
||||||
|
bin_size = os.path.getsize(binary_file)
|
||||||
|
logging.info('http_server_bin_size : {}KB'.format(bin_size // 1024))
|
||||||
|
|
||||||
|
# Upload binary and start testing
|
||||||
|
logging.info('Starting http_server simple test app')
|
||||||
|
|
||||||
|
# Parse IP address of STA
|
||||||
|
logging.info('Waiting to connect with AP')
|
||||||
|
if dut.app.sdkconfig.get('EXAMPLE_WIFI_SSID_PWD_FROM_STDIN') is True:
|
||||||
|
dut.expect('Please input ssid password:')
|
||||||
|
env_name = 'wifi_router'
|
||||||
|
ap_ssid = get_env_config_variable(env_name, 'ap_ssid')
|
||||||
|
ap_password = get_env_config_variable(env_name, 'ap_password')
|
||||||
|
dut.write(' '.join([ap_ssid, ap_password]))
|
||||||
|
got_ip = dut.expect(r'IPv4 address: (\d+\.\d+\.\d+\.\d+)[^\d]', timeout=30)[1].decode()
|
||||||
|
got_port = dut.expect(r"(?:[\s\S]*)Starting server on port: '(\d+)'", timeout=30)[1].decode()
|
||||||
|
|
||||||
|
logging.info('Got IP : {}'.format(got_ip))
|
||||||
|
logging.info('Got Port : {}'.format(got_port))
|
||||||
|
|
||||||
|
# Expected Logs
|
||||||
|
dut.expect('Registering URI handlers', timeout=30)
|
||||||
|
|
||||||
|
# Run test script
|
||||||
|
# If failed raise appropriate exception
|
||||||
|
logging.info('Test /hello GET handler')
|
||||||
|
if not client.test_get_handler(got_ip, str(got_port)):
|
||||||
|
raise RuntimeError
|
||||||
|
|
||||||
|
# Acquire host IP. Need a way to check it
|
||||||
|
dut.expect(r'(?:[\s\S]*)Found header => Host: (\d+.\d+.\d+.\d+)', timeout=30)
|
||||||
|
|
||||||
|
# Match additional headers sent in the request
|
||||||
|
dut.expect('Found header => Test-Header-2: Test-Value-2', timeout=30)
|
||||||
|
dut.expect('Found header => Test-Header-1: Test-Value-1', timeout=30)
|
||||||
|
dut.expect('Found URL query parameter => query1=value1', timeout=30)
|
||||||
|
dut.expect('Found URL query parameter => query3=value3', timeout=30)
|
||||||
|
dut.expect('Found URL query parameter => query2=value2', timeout=30)
|
||||||
|
dut.expect('Request headers lost', timeout=30)
|
||||||
|
|
||||||
|
logging.info('Test /ctrl PUT handler and realtime handler de/registration')
|
||||||
|
if not client.test_put_handler(got_ip, got_port):
|
||||||
|
raise RuntimeError
|
||||||
|
dut.expect('Unregistering /hello and /echo URIs', timeout=30)
|
||||||
|
dut.expect('Registering /hello and /echo URIs', timeout=30)
|
||||||
|
|
||||||
|
# Generate random data of 10KB
|
||||||
|
random_data = ''.join(string.printable[random.randint(0,len(string.printable)) - 1] for _ in range(10 * 1024))
|
||||||
|
logging.info('Test /echo POST handler with random data')
|
||||||
|
if not client.test_post_handler(got_ip, got_port, random_data):
|
||||||
|
raise RuntimeError
|
||||||
|
|
||||||
|
queries = 'query1=http%3A%2F%2Ffoobar&query3=abcd%2B1234%20xyz&query2=Esp%21%40%20%23%2471'
|
||||||
|
logging.info('Test /hello with custom query')
|
||||||
|
if not client.test_custom_uri_query(got_ip, got_port, queries):
|
||||||
|
raise RuntimeError
|
||||||
|
|
||||||
|
dut.expect_exact('Found URL query => query1=http%3A%2F%2Ffoobar&query3=abcd%2B1234%20xyz&query2=Esp%21%40%20%23%2471', timeout=30)
|
||||||
|
dut.expect_exact('Found URL query parameter => query1=http%3A%2F%2Ffoobar', timeout=30)
|
||||||
|
dut.expect_exact('Decoded query parameter => http://foobar', timeout=30)
|
||||||
|
dut.expect_exact('Found URL query parameter => query3=abcd%2B1234%20xyz', timeout=30)
|
||||||
|
dut.expect_exact('Decoded query parameter => abcd+1234 xyz', timeout=30)
|
||||||
|
dut.expect_exact('Found URL query parameter => query2=Esp%21%40%20%23%2471', timeout=30)
|
||||||
|
dut.expect_exact('Decoded query parameter => Esp!@ #$71', timeout=30)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.esp32
|
||||||
|
@pytest.mark.esp32c3
|
||||||
|
@pytest.mark.esp32s3
|
||||||
|
@pytest.mark.wifi_router
|
||||||
|
def test_examples_protocol_http_server_lru_purge_enable(dut: Dut) -> None:
|
||||||
|
|
||||||
|
# Get binary file
|
||||||
|
binary_file = os.path.join(dut.app.binary_path, 'simple.bin')
|
||||||
|
bin_size = os.path.getsize(binary_file)
|
||||||
|
logging.info('http_server_bin_size : {}KB'.format(bin_size // 1024))
|
||||||
|
|
||||||
|
# Upload binary and start testing
|
||||||
|
logging.info('Starting http_server simple test app')
|
||||||
|
|
||||||
|
# Parse IP address of STA
|
||||||
|
logging.info('Waiting to connect with AP')
|
||||||
|
if dut.app.sdkconfig.get('EXAMPLE_WIFI_SSID_PWD_FROM_STDIN') is True:
|
||||||
|
dut.expect('Please input ssid password:')
|
||||||
|
env_name = 'wifi_router'
|
||||||
|
ap_ssid = get_env_config_variable(env_name, 'ap_ssid')
|
||||||
|
ap_password = get_env_config_variable(env_name, 'ap_password')
|
||||||
|
dut.write(f'{ap_ssid} {ap_password}')
|
||||||
|
got_ip = dut.expect(r'IPv4 address: (\d+\.\d+\.\d+\.\d+)[^\d]', timeout=30)[1].decode()
|
||||||
|
got_port = dut.expect(r"(?:[\s\S]*)Starting server on port: '(\d+)'", timeout=30)[1].decode()
|
||||||
|
|
||||||
|
logging.info('Got IP : {}'.format(got_ip))
|
||||||
|
logging.info('Got Port : {}'.format(got_port))
|
||||||
|
|
||||||
|
# Expected Logs
|
||||||
|
dut.expect('Registering URI handlers', timeout=30)
|
||||||
|
threads = []
|
||||||
|
# Open 20 sockets, one from each thread
|
||||||
|
for _ in range(20):
|
||||||
|
try:
|
||||||
|
thread = http_client_thread(got_ip, (int(got_port)), 20)
|
||||||
|
thread.start()
|
||||||
|
threads.append(thread)
|
||||||
|
except OSError as err:
|
||||||
|
logging.info('Error: unable to start thread, {}'.format(err))
|
||||||
|
|
||||||
|
for t in threads:
|
||||||
|
t.join()
|
||||||
2
sdkconfig.ci
Normal file
2
sdkconfig.ci
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
CONFIG_EXAMPLE_BASIC_AUTH=y
|
||||||
|
CONFIG_EXAMPLE_WIFI_SSID_PWD_FROM_STDIN=y
|
||||||
5
sdkconfig.ci.ipv6_only
Normal file
5
sdkconfig.ci.ipv6_only
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
CONFIG_EXAMPLE_WIFI_SSID_PWD_FROM_STDIN=y
|
||||||
|
CONFIG_EXAMPLE_CONNECT_IPV4=n
|
||||||
|
CONFIG_EXAMPLE_CONNECT_IPV6=y
|
||||||
|
CONFIG_LWIP_IPV4=n
|
||||||
|
CONFIG_LWIP_IPV6=y
|
||||||
1698
sdkconfig.old
Normal file
1698
sdkconfig.old
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user