├── .gitmodules ├── README.md ├── base_station ├── .gitignore ├── .vscode │ └── extensions.json ├── CMakeLists.txt ├── include │ └── README ├── lib │ └── README ├── platformio.ini ├── sdkconfig ├── src │ ├── CMakeLists.txt │ └── main.cpp └── test │ └── README ├── mobile_station ├── .gitignore ├── .vscode │ ├── extensions.json │ └── settings.json ├── include │ └── README ├── lib │ ├── README │ ├── nmea_parser │ │ └── library.json │ └── sd_card │ │ ├── library.json │ │ └── src │ │ ├── SDCard.cpp │ │ └── SDCard.h ├── platformio.ini ├── src │ ├── Application.cpp │ ├── Application.h │ ├── EspNowReceiver.cpp │ ├── EspNowReceiver.h │ ├── GPS.cpp │ ├── GPS.h │ ├── Logger.cpp │ ├── Logger.h │ ├── config.h │ └── main.cpp └── test │ └── README └── throughput-test ├── .gitignore ├── .vscode └── extensions.json ├── CMakeLists.txt ├── include └── README ├── lib └── README ├── platformio.ini ├── sdkconfig ├── src ├── CMakeLists.txt └── main.cpp └── test └── README /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/README.md -------------------------------------------------------------------------------- /base_station/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/.gitignore -------------------------------------------------------------------------------- /base_station/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/.vscode/extensions.json -------------------------------------------------------------------------------- /base_station/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/CMakeLists.txt -------------------------------------------------------------------------------- /base_station/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/include/README -------------------------------------------------------------------------------- /base_station/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/lib/README -------------------------------------------------------------------------------- /base_station/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/platformio.ini -------------------------------------------------------------------------------- /base_station/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/sdkconfig -------------------------------------------------------------------------------- /base_station/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/src/CMakeLists.txt -------------------------------------------------------------------------------- /base_station/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/src/main.cpp -------------------------------------------------------------------------------- /base_station/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/base_station/test/README -------------------------------------------------------------------------------- /mobile_station/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/.gitignore -------------------------------------------------------------------------------- /mobile_station/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/.vscode/extensions.json -------------------------------------------------------------------------------- /mobile_station/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /mobile_station/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/include/README -------------------------------------------------------------------------------- /mobile_station/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/lib/README -------------------------------------------------------------------------------- /mobile_station/lib/nmea_parser/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/lib/nmea_parser/library.json -------------------------------------------------------------------------------- /mobile_station/lib/sd_card/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/lib/sd_card/library.json -------------------------------------------------------------------------------- /mobile_station/lib/sd_card/src/SDCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/lib/sd_card/src/SDCard.cpp -------------------------------------------------------------------------------- /mobile_station/lib/sd_card/src/SDCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/lib/sd_card/src/SDCard.h -------------------------------------------------------------------------------- /mobile_station/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/platformio.ini -------------------------------------------------------------------------------- /mobile_station/src/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/Application.cpp -------------------------------------------------------------------------------- /mobile_station/src/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/Application.h -------------------------------------------------------------------------------- /mobile_station/src/EspNowReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/EspNowReceiver.cpp -------------------------------------------------------------------------------- /mobile_station/src/EspNowReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/EspNowReceiver.h -------------------------------------------------------------------------------- /mobile_station/src/GPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/GPS.cpp -------------------------------------------------------------------------------- /mobile_station/src/GPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/GPS.h -------------------------------------------------------------------------------- /mobile_station/src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/Logger.cpp -------------------------------------------------------------------------------- /mobile_station/src/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/Logger.h -------------------------------------------------------------------------------- /mobile_station/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/config.h -------------------------------------------------------------------------------- /mobile_station/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/src/main.cpp -------------------------------------------------------------------------------- /mobile_station/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/mobile_station/test/README -------------------------------------------------------------------------------- /throughput-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/.gitignore -------------------------------------------------------------------------------- /throughput-test/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/.vscode/extensions.json -------------------------------------------------------------------------------- /throughput-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/CMakeLists.txt -------------------------------------------------------------------------------- /throughput-test/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/include/README -------------------------------------------------------------------------------- /throughput-test/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/lib/README -------------------------------------------------------------------------------- /throughput-test/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/platformio.ini -------------------------------------------------------------------------------- /throughput-test/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/sdkconfig -------------------------------------------------------------------------------- /throughput-test/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/src/CMakeLists.txt -------------------------------------------------------------------------------- /throughput-test/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/src/main.cpp -------------------------------------------------------------------------------- /throughput-test/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomic14/esp-now-range-test/HEAD/throughput-test/test/README --------------------------------------------------------------------------------