├── .gitignore ├── Documents ├── CC1100 - Wake-On-Radio.pdf ├── CC1101 Module Manual.pdf ├── CC1101_Data_sheet.pdf ├── CC1101_ERRATA_NOTES.pdf ├── CC1101_Examples_and_Libraries.pdf ├── CC1101_Modules.pdf ├── CC1101_Packet_Transmission_Basics.pdf └── CC1101_RSSI_Interpretation_and_Timing.pdf ├── Makefile ├── README.md ├── components ├── cc1100 │ ├── component.mk │ ├── libcc1100.c │ └── libcc1100.h └── spidriver │ ├── component.mk │ ├── spi_master_lobo.c │ └── spi_master_lobo.h ├── main ├── Kconfig.projbuild ├── cc1101_demo.c └── component.mk └── sdkconfig.defaults /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/.gitignore -------------------------------------------------------------------------------- /Documents/CC1100 - Wake-On-Radio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/Documents/CC1100 - Wake-On-Radio.pdf -------------------------------------------------------------------------------- /Documents/CC1101 Module Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/Documents/CC1101 Module Manual.pdf -------------------------------------------------------------------------------- /Documents/CC1101_Data_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/Documents/CC1101_Data_sheet.pdf -------------------------------------------------------------------------------- /Documents/CC1101_ERRATA_NOTES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/Documents/CC1101_ERRATA_NOTES.pdf -------------------------------------------------------------------------------- /Documents/CC1101_Examples_and_Libraries.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/Documents/CC1101_Examples_and_Libraries.pdf -------------------------------------------------------------------------------- /Documents/CC1101_Modules.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/Documents/CC1101_Modules.pdf -------------------------------------------------------------------------------- /Documents/CC1101_Packet_Transmission_Basics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/Documents/CC1101_Packet_Transmission_Basics.pdf -------------------------------------------------------------------------------- /Documents/CC1101_RSSI_Interpretation_and_Timing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/Documents/CC1101_RSSI_Interpretation_and_Timing.pdf -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/README.md -------------------------------------------------------------------------------- /components/cc1100/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/components/cc1100/component.mk -------------------------------------------------------------------------------- /components/cc1100/libcc1100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/components/cc1100/libcc1100.c -------------------------------------------------------------------------------- /components/cc1100/libcc1100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/components/cc1100/libcc1100.h -------------------------------------------------------------------------------- /components/spidriver/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/components/spidriver/component.mk -------------------------------------------------------------------------------- /components/spidriver/spi_master_lobo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/components/spidriver/spi_master_lobo.c -------------------------------------------------------------------------------- /components/spidriver/spi_master_lobo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/components/spidriver/spi_master_lobo.h -------------------------------------------------------------------------------- /main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/main/Kconfig.projbuild -------------------------------------------------------------------------------- /main/cc1101_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/main/cc1101_demo.c -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/main/component.mk -------------------------------------------------------------------------------- /sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loboris/ESP32_CC1101/HEAD/sdkconfig.defaults --------------------------------------------------------------------------------