├── .gitattributes ├── LICENSE ├── Makefile ├── README.md ├── include ├── c_types.h ├── dmastuff.h ├── eagle_soc.h ├── esp8266_auxrom.h ├── esp8266_rom.h ├── ets_sys.h ├── nosdk8266.h ├── pin_mux_register.h ├── slc_register.h ├── uart_dev.h └── uart_register.h ├── ld ├── addresses.ld └── linkerscript.ld ├── main.c └── src ├── delay.S └── nosdk8266.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/README.md -------------------------------------------------------------------------------- /include/c_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/c_types.h -------------------------------------------------------------------------------- /include/dmastuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/dmastuff.h -------------------------------------------------------------------------------- /include/eagle_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/eagle_soc.h -------------------------------------------------------------------------------- /include/esp8266_auxrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/esp8266_auxrom.h -------------------------------------------------------------------------------- /include/esp8266_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/esp8266_rom.h -------------------------------------------------------------------------------- /include/ets_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/ets_sys.h -------------------------------------------------------------------------------- /include/nosdk8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/nosdk8266.h -------------------------------------------------------------------------------- /include/pin_mux_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/pin_mux_register.h -------------------------------------------------------------------------------- /include/slc_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/slc_register.h -------------------------------------------------------------------------------- /include/uart_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/uart_dev.h -------------------------------------------------------------------------------- /include/uart_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/include/uart_register.h -------------------------------------------------------------------------------- /ld/addresses.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/ld/addresses.ld -------------------------------------------------------------------------------- /ld/linkerscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/ld/linkerscript.ld -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/main.c -------------------------------------------------------------------------------- /src/delay.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/src/delay.S -------------------------------------------------------------------------------- /src/nosdk8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/nosdk8266/HEAD/src/nosdk8266.c --------------------------------------------------------------------------------