├── .gitignore ├── LICENSE ├── README.md └── example ├── cross.txt ├── driver ├── meson.build ├── soc.h ├── uart.c ├── uart.h ├── wdt.c └── wdt.h ├── ld ├── common.ld ├── esp32c3.ld └── romfuncs.ld ├── main.c ├── meson.build ├── start.S └── vectors.S /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/README.md -------------------------------------------------------------------------------- /example/cross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/cross.txt -------------------------------------------------------------------------------- /example/driver/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/driver/meson.build -------------------------------------------------------------------------------- /example/driver/soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/driver/soc.h -------------------------------------------------------------------------------- /example/driver/uart.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/driver/uart.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/driver/wdt.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/driver/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/driver/wdt.h -------------------------------------------------------------------------------- /example/ld/common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/ld/common.ld -------------------------------------------------------------------------------- /example/ld/esp32c3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/ld/esp32c3.ld -------------------------------------------------------------------------------- /example/ld/romfuncs.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/ld/romfuncs.ld -------------------------------------------------------------------------------- /example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/main.c -------------------------------------------------------------------------------- /example/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/meson.build -------------------------------------------------------------------------------- /example/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/start.S -------------------------------------------------------------------------------- /example/vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigmagic123/esp32c3_bare_metal/HEAD/example/vectors.S --------------------------------------------------------------------------------