├── .gitignore ├── ESP32-Test ├── ESP32-Test.ino ├── PYTHON_serial │ └── serial_logger.py ├── p_histogram.ino ├── t_callbacks.ino └── z_setup_loop.ino ├── ESP8266-Test ├── ESP8266-Test.ino └── serial_logger.py ├── ESP8266_Echo └── ESP8266_Echo.ino ├── ESPNOW_lib ├── Makefile ├── README.MD └── src │ ├── ESPNOW_manager.cpp │ ├── ESPNOW_types.cpp │ ├── Includes │ ├── ESPNOW_manager.h │ └── ESPNOW_types.h │ └── main.cpp ├── LICENSE ├── Lab └── EspNowPacket │ ├── EspNowPacket.c │ └── Makefile ├── Misc └── RT_Preempt_patch_Linux.pdf ├── README.md ├── wifiRawEcho ├── Includes │ └── ESPNOW_packet.h ├── Makefile └── src │ ├── ESPNOW_packet.c │ └── main.c ├── wifiRawReceiver ├── Makefile └── main.c └── wifiRawSender ├── Makefile └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/.gitignore -------------------------------------------------------------------------------- /ESP32-Test/ESP32-Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESP32-Test/ESP32-Test.ino -------------------------------------------------------------------------------- /ESP32-Test/PYTHON_serial/serial_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESP32-Test/PYTHON_serial/serial_logger.py -------------------------------------------------------------------------------- /ESP32-Test/p_histogram.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESP32-Test/p_histogram.ino -------------------------------------------------------------------------------- /ESP32-Test/t_callbacks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESP32-Test/t_callbacks.ino -------------------------------------------------------------------------------- /ESP32-Test/z_setup_loop.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESP32-Test/z_setup_loop.ino -------------------------------------------------------------------------------- /ESP8266-Test/ESP8266-Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESP8266-Test/ESP8266-Test.ino -------------------------------------------------------------------------------- /ESP8266-Test/serial_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESP8266-Test/serial_logger.py -------------------------------------------------------------------------------- /ESP8266_Echo/ESP8266_Echo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESP8266_Echo/ESP8266_Echo.ino -------------------------------------------------------------------------------- /ESPNOW_lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESPNOW_lib/Makefile -------------------------------------------------------------------------------- /ESPNOW_lib/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESPNOW_lib/README.MD -------------------------------------------------------------------------------- /ESPNOW_lib/src/ESPNOW_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESPNOW_lib/src/ESPNOW_manager.cpp -------------------------------------------------------------------------------- /ESPNOW_lib/src/ESPNOW_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESPNOW_lib/src/ESPNOW_types.cpp -------------------------------------------------------------------------------- /ESPNOW_lib/src/Includes/ESPNOW_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESPNOW_lib/src/Includes/ESPNOW_manager.h -------------------------------------------------------------------------------- /ESPNOW_lib/src/Includes/ESPNOW_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESPNOW_lib/src/Includes/ESPNOW_types.h -------------------------------------------------------------------------------- /ESPNOW_lib/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/ESPNOW_lib/src/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/LICENSE -------------------------------------------------------------------------------- /Lab/EspNowPacket/EspNowPacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/Lab/EspNowPacket/EspNowPacket.c -------------------------------------------------------------------------------- /Lab/EspNowPacket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/Lab/EspNowPacket/Makefile -------------------------------------------------------------------------------- /Misc/RT_Preempt_patch_Linux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/Misc/RT_Preempt_patch_Linux.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/README.md -------------------------------------------------------------------------------- /wifiRawEcho/Includes/ESPNOW_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/wifiRawEcho/Includes/ESPNOW_packet.h -------------------------------------------------------------------------------- /wifiRawEcho/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/wifiRawEcho/Makefile -------------------------------------------------------------------------------- /wifiRawEcho/src/ESPNOW_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/wifiRawEcho/src/ESPNOW_packet.c -------------------------------------------------------------------------------- /wifiRawEcho/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/wifiRawEcho/src/main.c -------------------------------------------------------------------------------- /wifiRawReceiver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/wifiRawReceiver/Makefile -------------------------------------------------------------------------------- /wifiRawReceiver/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/wifiRawReceiver/main.c -------------------------------------------------------------------------------- /wifiRawSender/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/wifiRawSender/Makefile -------------------------------------------------------------------------------- /wifiRawSender/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfla/Linux-ESPNOW/HEAD/wifiRawSender/main.c --------------------------------------------------------------------------------