├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── font.h ├── keyb.c ├── keyb.h ├── lcd.c ├── lcd.h ├── lcd.pio ├── photos ├── .gitkeep ├── 1.jpg ├── 2.jpg └── 3.jpg ├── serial.c ├── serial.h ├── serial.pio ├── splash.h ├── term.c ├── term.h ├── unicodetocodepage.c ├── unicodetocodepage.h └── vt2040.c /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncrawforth/VT2040/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncrawforth/VT2040/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncrawforth/VT2040/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncrawforth/VT2040/HEAD/README.md -------------------------------------------------------------------------------- /font.h: -------------------------------------------------------------------------------- 1 | VT2040-font/font.h -------------------------------------------------------------------------------- /keyb.c: -------------------------------------------------------------------------------- 1 | VT2040-keyb/keyb.c -------------------------------------------------------------------------------- /keyb.h: -------------------------------------------------------------------------------- 1 | VT2040-keyb/keyb.h -------------------------------------------------------------------------------- /lcd.c: -------------------------------------------------------------------------------- 1 | VT2040-lcd/lcd.c -------------------------------------------------------------------------------- /lcd.h: -------------------------------------------------------------------------------- 1 | VT2040-lcd/lcd.h -------------------------------------------------------------------------------- /lcd.pio: -------------------------------------------------------------------------------- 1 | VT2040-lcd/lcd.pio -------------------------------------------------------------------------------- /photos/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /photos/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncrawforth/VT2040/HEAD/photos/1.jpg -------------------------------------------------------------------------------- /photos/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncrawforth/VT2040/HEAD/photos/2.jpg -------------------------------------------------------------------------------- /photos/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncrawforth/VT2040/HEAD/photos/3.jpg -------------------------------------------------------------------------------- /serial.c: -------------------------------------------------------------------------------- 1 | VT2040-serial/serial.c -------------------------------------------------------------------------------- /serial.h: -------------------------------------------------------------------------------- 1 | VT2040-serial/serial.h -------------------------------------------------------------------------------- /serial.pio: -------------------------------------------------------------------------------- 1 | VT2040-serial/serial.pio -------------------------------------------------------------------------------- /splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncrawforth/VT2040/HEAD/splash.h -------------------------------------------------------------------------------- /term.c: -------------------------------------------------------------------------------- 1 | VT2040-term/term.c -------------------------------------------------------------------------------- /term.h: -------------------------------------------------------------------------------- 1 | VT2040-term/term.h -------------------------------------------------------------------------------- /unicodetocodepage.c: -------------------------------------------------------------------------------- 1 | VT2040-font/unicodetocodepage.c -------------------------------------------------------------------------------- /unicodetocodepage.h: -------------------------------------------------------------------------------- 1 | VT2040-font/unicodetocodepage.h -------------------------------------------------------------------------------- /vt2040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncrawforth/VT2040/HEAD/vt2040.c --------------------------------------------------------------------------------