├── LICENSE ├── Makefile ├── README.md ├── cnrfb.c ├── cnrfb.h ├── elf_x86_64_mod.x ├── esp ├── 0x00000.bin ├── 0x40000.bin ├── Makefile ├── driver │ ├── uart.c │ └── uart.h └── user │ ├── mystuff.c │ ├── mystuff.h │ ├── stdint.h │ ├── stdio.h │ ├── string.h │ ├── user_config.h │ ├── user_main.c │ ├── ws2812.c │ └── ws2812.h ├── font.h ├── fonter.c ├── fps.c ├── fps.h ├── heap.c ├── heap.h ├── linux_interface.c ├── mathfuncts.c ├── mathfuncts.h ├── mathtables.h ├── tabler.c └── vga8x12.pbm /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/README.md -------------------------------------------------------------------------------- /cnrfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/cnrfb.c -------------------------------------------------------------------------------- /cnrfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/cnrfb.h -------------------------------------------------------------------------------- /elf_x86_64_mod.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/elf_x86_64_mod.x -------------------------------------------------------------------------------- /esp/0x00000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/0x00000.bin -------------------------------------------------------------------------------- /esp/0x40000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/0x40000.bin -------------------------------------------------------------------------------- /esp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/Makefile -------------------------------------------------------------------------------- /esp/driver/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/driver/uart.c -------------------------------------------------------------------------------- /esp/driver/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/driver/uart.h -------------------------------------------------------------------------------- /esp/user/mystuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/user/mystuff.c -------------------------------------------------------------------------------- /esp/user/mystuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/user/mystuff.h -------------------------------------------------------------------------------- /esp/user/stdint.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /esp/user/stdio.h: -------------------------------------------------------------------------------- 1 | #include "mystuff.h" 2 | 3 | -------------------------------------------------------------------------------- /esp/user/string.h: -------------------------------------------------------------------------------- 1 | //Nothing here. 2 | -------------------------------------------------------------------------------- /esp/user/user_config.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /esp/user/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/user/user_main.c -------------------------------------------------------------------------------- /esp/user/ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/user/ws2812.c -------------------------------------------------------------------------------- /esp/user/ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/esp/user/ws2812.h -------------------------------------------------------------------------------- /font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/font.h -------------------------------------------------------------------------------- /fonter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/fonter.c -------------------------------------------------------------------------------- /fps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/fps.c -------------------------------------------------------------------------------- /fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/fps.h -------------------------------------------------------------------------------- /heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/heap.c -------------------------------------------------------------------------------- /heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/heap.h -------------------------------------------------------------------------------- /linux_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/linux_interface.c -------------------------------------------------------------------------------- /mathfuncts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/mathfuncts.c -------------------------------------------------------------------------------- /mathfuncts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/mathfuncts.h -------------------------------------------------------------------------------- /mathtables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/mathtables.h -------------------------------------------------------------------------------- /tabler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/tabler.c -------------------------------------------------------------------------------- /vga8x12.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/pylotron/HEAD/vga8x12.pbm --------------------------------------------------------------------------------