mirror of
https://github.com/furyhawk/ESP32-X-Desktop.git
synced 2026-07-21 17:05:35 +00:00
- Implemented security2.py for handling protobuf packets with security type protocomm_security2. - Introduced srp6a.py for secure password verification and session management. - Created transport layer with various transport methods: BLE, console, and HTTP. - Added utility functions for data type conversions in convenience.py. - Established a modular structure for network provisioning, allowing for flexible transport options.
8 lines
243 B
Makefile
8 lines
243 B
Makefile
all: c_proto python_proto
|
|
|
|
c_proto: *.proto
|
|
@protoc-c --c_out=../proto-c/ -I . -I ${IDF_PATH}/components/protocomm/proto/ *.proto
|
|
|
|
python_proto: *.proto
|
|
@protoc --python_out=../python/ -I . -I ${IDF_PATH}/components/protocomm/proto/ *.proto
|