├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── push-master.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── extra_script.py ├── include ├── base.h ├── calibration.h ├── framestate.h ├── main.h ├── powercontrol.h └── statistics.h ├── lib └── README ├── platformio.ini ├── src └── main.cpp └── test ├── test_MultiSegment └── main.cpp ├── test_MultiSegmentReversed └── main.cpp └── test_SingleSegment └── main.cpp /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: awawa-dev 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/push-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/.github/workflows/push-master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "algorithm": "cpp" 4 | } 5 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/README.md -------------------------------------------------------------------------------- /extra_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/extra_script.py -------------------------------------------------------------------------------- /include/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/include/base.h -------------------------------------------------------------------------------- /include/calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/include/calibration.h -------------------------------------------------------------------------------- /include/framestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/include/framestate.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/include/main.h -------------------------------------------------------------------------------- /include/powercontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/include/powercontrol.h -------------------------------------------------------------------------------- /include/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/include/statistics.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/test_MultiSegment/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/test/test_MultiSegment/main.cpp -------------------------------------------------------------------------------- /test/test_MultiSegmentReversed/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/test/test_MultiSegmentReversed/main.cpp -------------------------------------------------------------------------------- /test/test_SingleSegment/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialESP32/HEAD/test/test_SingleSegment/main.cpp --------------------------------------------------------------------------------