├── .gitattributes ├── 3D ├── LCD_Box.rsdoc ├── LCD_Box_Base.stl ├── LCD_Box_Cover.stl └── PrintSettings.png ├── Arduino_Nano ├── TFT_Test_128x128 │ └── init_code.cpp └── TFT_Test_48x640 │ ├── DIO.cpp │ ├── DIO.h │ ├── ROM.cpp │ ├── ROM.h │ └── TFT_Test_48x640.ino ├── LICENSE ├── README.md ├── Tang-Nano ├── .gitignore ├── fpga_project.cst ├── fpga_project.sdc ├── impl │ ├── pnr │ │ ├── device.cfg │ │ └── lcd_test.fs │ └── project_process_config.json ├── lcd_test.gprj ├── sim │ ├── filelist.txt │ ├── rtl │ │ ├── ip │ │ │ └── prim_sim.v │ │ └── tb_top.v │ └── sim.do └── src │ ├── ip │ └── gowin_pll │ │ ├── gowin_pll.ipc │ │ ├── gowin_pll.mod │ │ ├── gowin_pll.v │ │ └── gowin_pll_tmp.v │ ├── lcd_ctrl.v │ ├── lcd_init.v │ ├── lcd_sushi.v │ ├── lcd_top.v │ └── sushi_ROM.v └── doc ├── PWB └── Iris_Wand_Main_PCB_REV_01 │ ├── L1_1.jpg │ ├── L1_2.jpg │ ├── L2.jpg │ ├── L3.jpg │ ├── L4_1.jpg │ ├── L4_2.jpg │ ├── side_view(4-layer).jpg │ └── thickness.jpg ├── SoC ├── SNC73121B1FG │ └── SONIX_SNC73121B1FG.jpg └── SNC73127B1FG │ ├── SONIX_SNC73127B1FG.jpg │ ├── chip_1.jpg │ └── chip_2.jpg ├── backlightLED_If-Vf.png ├── memo.png ├── pinout.png ├── top_arduino.png └── top_tang_nano.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/.gitattributes -------------------------------------------------------------------------------- /3D/LCD_Box.rsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/3D/LCD_Box.rsdoc -------------------------------------------------------------------------------- /3D/LCD_Box_Base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/3D/LCD_Box_Base.stl -------------------------------------------------------------------------------- /3D/LCD_Box_Cover.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/3D/LCD_Box_Cover.stl -------------------------------------------------------------------------------- /3D/PrintSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/3D/PrintSettings.png -------------------------------------------------------------------------------- /Arduino_Nano/TFT_Test_128x128/init_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Arduino_Nano/TFT_Test_128x128/init_code.cpp -------------------------------------------------------------------------------- /Arduino_Nano/TFT_Test_48x640/DIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Arduino_Nano/TFT_Test_48x640/DIO.cpp -------------------------------------------------------------------------------- /Arduino_Nano/TFT_Test_48x640/DIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Arduino_Nano/TFT_Test_48x640/DIO.h -------------------------------------------------------------------------------- /Arduino_Nano/TFT_Test_48x640/ROM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Arduino_Nano/TFT_Test_48x640/ROM.cpp -------------------------------------------------------------------------------- /Arduino_Nano/TFT_Test_48x640/ROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Arduino_Nano/TFT_Test_48x640/ROM.h -------------------------------------------------------------------------------- /Arduino_Nano/TFT_Test_48x640/TFT_Test_48x640.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Arduino_Nano/TFT_Test_48x640/TFT_Test_48x640.ino -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/README.md -------------------------------------------------------------------------------- /Tang-Nano/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/.gitignore -------------------------------------------------------------------------------- /Tang-Nano/fpga_project.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/fpga_project.cst -------------------------------------------------------------------------------- /Tang-Nano/fpga_project.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/fpga_project.sdc -------------------------------------------------------------------------------- /Tang-Nano/impl/pnr/device.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/impl/pnr/device.cfg -------------------------------------------------------------------------------- /Tang-Nano/impl/pnr/lcd_test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/impl/pnr/lcd_test.fs -------------------------------------------------------------------------------- /Tang-Nano/impl/project_process_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/impl/project_process_config.json -------------------------------------------------------------------------------- /Tang-Nano/lcd_test.gprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/lcd_test.gprj -------------------------------------------------------------------------------- /Tang-Nano/sim/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/sim/filelist.txt -------------------------------------------------------------------------------- /Tang-Nano/sim/rtl/ip/prim_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/sim/rtl/ip/prim_sim.v -------------------------------------------------------------------------------- /Tang-Nano/sim/rtl/tb_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/sim/rtl/tb_top.v -------------------------------------------------------------------------------- /Tang-Nano/sim/sim.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/sim/sim.do -------------------------------------------------------------------------------- /Tang-Nano/src/ip/gowin_pll/gowin_pll.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/src/ip/gowin_pll/gowin_pll.ipc -------------------------------------------------------------------------------- /Tang-Nano/src/ip/gowin_pll/gowin_pll.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/src/ip/gowin_pll/gowin_pll.mod -------------------------------------------------------------------------------- /Tang-Nano/src/ip/gowin_pll/gowin_pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/src/ip/gowin_pll/gowin_pll.v -------------------------------------------------------------------------------- /Tang-Nano/src/ip/gowin_pll/gowin_pll_tmp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/src/ip/gowin_pll/gowin_pll_tmp.v -------------------------------------------------------------------------------- /Tang-Nano/src/lcd_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/src/lcd_ctrl.v -------------------------------------------------------------------------------- /Tang-Nano/src/lcd_init.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/src/lcd_init.v -------------------------------------------------------------------------------- /Tang-Nano/src/lcd_sushi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/src/lcd_sushi.v -------------------------------------------------------------------------------- /Tang-Nano/src/lcd_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/src/lcd_top.v -------------------------------------------------------------------------------- /Tang-Nano/src/sushi_ROM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/Tang-Nano/src/sushi_ROM.v -------------------------------------------------------------------------------- /doc/PWB/Iris_Wand_Main_PCB_REV_01/L1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/PWB/Iris_Wand_Main_PCB_REV_01/L1_1.jpg -------------------------------------------------------------------------------- /doc/PWB/Iris_Wand_Main_PCB_REV_01/L1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/PWB/Iris_Wand_Main_PCB_REV_01/L1_2.jpg -------------------------------------------------------------------------------- /doc/PWB/Iris_Wand_Main_PCB_REV_01/L2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/PWB/Iris_Wand_Main_PCB_REV_01/L2.jpg -------------------------------------------------------------------------------- /doc/PWB/Iris_Wand_Main_PCB_REV_01/L3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/PWB/Iris_Wand_Main_PCB_REV_01/L3.jpg -------------------------------------------------------------------------------- /doc/PWB/Iris_Wand_Main_PCB_REV_01/L4_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/PWB/Iris_Wand_Main_PCB_REV_01/L4_1.jpg -------------------------------------------------------------------------------- /doc/PWB/Iris_Wand_Main_PCB_REV_01/L4_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/PWB/Iris_Wand_Main_PCB_REV_01/L4_2.jpg -------------------------------------------------------------------------------- /doc/PWB/Iris_Wand_Main_PCB_REV_01/side_view(4-layer).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/PWB/Iris_Wand_Main_PCB_REV_01/side_view(4-layer).jpg -------------------------------------------------------------------------------- /doc/PWB/Iris_Wand_Main_PCB_REV_01/thickness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/PWB/Iris_Wand_Main_PCB_REV_01/thickness.jpg -------------------------------------------------------------------------------- /doc/SoC/SNC73121B1FG/SONIX_SNC73121B1FG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/SoC/SNC73121B1FG/SONIX_SNC73121B1FG.jpg -------------------------------------------------------------------------------- /doc/SoC/SNC73127B1FG/SONIX_SNC73127B1FG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/SoC/SNC73127B1FG/SONIX_SNC73127B1FG.jpg -------------------------------------------------------------------------------- /doc/SoC/SNC73127B1FG/chip_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/SoC/SNC73127B1FG/chip_1.jpg -------------------------------------------------------------------------------- /doc/SoC/SNC73127B1FG/chip_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/SoC/SNC73127B1FG/chip_2.jpg -------------------------------------------------------------------------------- /doc/backlightLED_If-Vf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/backlightLED_If-Vf.png -------------------------------------------------------------------------------- /doc/memo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/memo.png -------------------------------------------------------------------------------- /doc/pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/pinout.png -------------------------------------------------------------------------------- /doc/top_arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/top_arduino.png -------------------------------------------------------------------------------- /doc/top_tang_nano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingyoPiyo/TFT_Test_48x640/HEAD/doc/top_tang_nano.png --------------------------------------------------------------------------------