├── .gitignore ├── README.md ├── components └── lora │ ├── Kconfig │ ├── component.mk │ ├── include │ └── lora.h │ └── lora.c ├── makefile └── sdkconfig /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inteform/esp32-lora-library/HEAD/README.md -------------------------------------------------------------------------------- /components/lora/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inteform/esp32-lora-library/HEAD/components/lora/Kconfig -------------------------------------------------------------------------------- /components/lora/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inteform/esp32-lora-library/HEAD/components/lora/component.mk -------------------------------------------------------------------------------- /components/lora/include/lora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inteform/esp32-lora-library/HEAD/components/lora/include/lora.h -------------------------------------------------------------------------------- /components/lora/lora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inteform/esp32-lora-library/HEAD/components/lora/lora.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- 1 | 2 | PROJECT_NAME := LORA 3 | include $(IDF_PATH)/make/project.mk 4 | 5 | -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inteform/esp32-lora-library/HEAD/sdkconfig --------------------------------------------------------------------------------