├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── main ├── CMakeLists.txt ├── component.mk └── main.c ├── rickroll.png └── sdkconfig /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | sdkconfig.old 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeija/esp32-80211-tx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | PROJECT_NAME := esp32free80211 2 | include $(IDF_PATH)/make/project.mk 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeija/esp32-80211-tx/HEAD/README.md -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeija/esp32-80211-tx/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeija/esp32-80211-tx/HEAD/main/main.c -------------------------------------------------------------------------------- /rickroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeija/esp32-80211-tx/HEAD/rickroll.png -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeija/esp32-80211-tx/HEAD/sdkconfig --------------------------------------------------------------------------------