├── Datasheet ├── FT5x16.pdf ├── ILI9806G.pdf └── TK050F5590_spec_v1.1.pdf ├── Demonstration ├── DE10_NANO_Linux_RGB │ ├── DE10_NANO_Linux_RGB.qpf │ ├── DE10_NANO_Linux_RGB.qsf │ ├── DE10_NANO_Linux_RGB.sdc │ ├── DE10_NANO_Linux_RGB.v │ ├── I2C_Controller.v │ ├── I2C_HDMI_Config.v │ ├── I2C_WRITE_WDATA.v │ ├── Makefile │ ├── generate_hps_qsys_header.sh │ ├── hps_common_board_info.xml │ ├── ip │ │ ├── altsource_probe │ │ │ ├── hps_reset.qip │ │ │ ├── hps_reset.v │ │ │ └── hps_reset_bb.v │ │ ├── debounce │ │ │ └── debounce.v │ │ ├── edge_detect │ │ │ └── altera_edge_detector.v │ │ ├── i2c_opencores │ │ │ ├── Docs │ │ │ │ ├── I2C_tests.c │ │ │ │ └── i2c_specs.pdf │ │ │ ├── HAL │ │ │ │ ├── inc │ │ │ │ │ └── i2c_opencores.h │ │ │ │ └── src │ │ │ │ │ ├── component.mk │ │ │ │ │ └── i2c_opencores.c │ │ │ ├── i2c_master_bit_ctrl.v │ │ │ ├── i2c_master_byte_ctrl.v │ │ │ ├── i2c_master_defines.v │ │ │ ├── i2c_master_top.v │ │ │ ├── i2c_opencores.v │ │ │ ├── i2c_opencores_hw.tcl │ │ │ ├── i2c_opencores_sw.tcl │ │ │ ├── inc │ │ │ │ └── i2c_opencores_regs.h │ │ │ ├── test.v │ │ │ └── timescale.v │ │ ├── intr_capturer │ │ │ ├── intr_capturer.v │ │ │ └── intr_capturer_hw.tcl │ │ ├── lcd_pll │ │ │ ├── lcd_pll.qip │ │ │ ├── lcd_pll.v │ │ │ └── lcd_pll │ │ │ │ ├── lcd_pll_0002.qip │ │ │ │ └── lcd_pll_0002.v │ │ └── spi_init │ │ │ └── lcd_spi_init.v │ ├── soc_system.qsys │ └── soc_system_board_info.xml ├── DE10_NANO_Linux_i80 │ ├── DE10_NANO_Linux_i80.qpf │ ├── DE10_NANO_Linux_i80.qsf │ ├── DE10_NANO_Linux_i80.sdc │ ├── DE10_NANO_Linux_i80.v │ ├── I2C_Controller.v │ ├── I2C_HDMI_Config.v │ ├── I2C_WRITE_WDATA.v │ ├── Makefile │ ├── generate_hps_qsys_header.sh │ ├── hps_common_board_info.xml │ ├── ip │ │ ├── I8080_Controller │ │ │ ├── I8080_Controller.v │ │ │ └── I8080_Controller_hw.tcl │ │ ├── altsource_probe │ │ │ ├── hps_reset.qip │ │ │ ├── hps_reset.v │ │ │ └── hps_reset_bb.v │ │ ├── debounce │ │ │ └── debounce.v │ │ ├── edge_detect │ │ │ └── altera_edge_detector.v │ │ ├── i2c_opencores │ │ │ ├── Docs │ │ │ │ ├── I2C_tests.c │ │ │ │ └── i2c_specs.pdf │ │ │ ├── HAL │ │ │ │ ├── inc │ │ │ │ │ └── i2c_opencores.h │ │ │ │ └── src │ │ │ │ │ ├── component.mk │ │ │ │ │ └── i2c_opencores.c │ │ │ ├── i2c_master_bit_ctrl.v │ │ │ ├── i2c_master_byte_ctrl.v │ │ │ ├── i2c_master_defines.v │ │ │ ├── i2c_master_top.v │ │ │ ├── i2c_opencores.v │ │ │ ├── i2c_opencores_hw.tcl │ │ │ ├── i2c_opencores_sw.tcl │ │ │ ├── inc │ │ │ │ └── i2c_opencores_regs.h │ │ │ ├── test.v │ │ │ └── timescale.v │ │ ├── intr_capturer │ │ │ ├── intr_capturer.v │ │ │ └── intr_capturer_hw.tcl │ │ ├── lcd_pll │ │ │ ├── lcd_pll.qip │ │ │ ├── lcd_pll.v │ │ │ └── lcd_pll │ │ │ │ ├── lcd_pll_0002.qip │ │ │ │ └── lcd_pll_0002.v │ │ └── spi_init │ │ │ └── lcd_spi_init.v │ ├── soc_system.qsys │ ├── soc_system_board_info.xml │ └── soc_system_hw.tcl ├── DE10_NANO_MIL_8bits │ ├── DE10_NANO_MIL_8bits.qpf │ ├── DE10_NANO_MIL_8bits.qsf │ ├── DE10_NANO_MIL_8bits.sdc │ ├── DE10_NANO_MIL_8bits.v │ ├── Makefile │ ├── nios2_system.qsys │ └── software │ │ ├── ili9806g_tft │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── language.settings.xml │ │ ├── Makefile │ │ ├── create-this-app │ │ ├── lcd │ │ │ ├── lcd.c │ │ │ └── lcd.h │ │ ├── main.c │ │ └── readme.txt │ │ └── ili9806g_tft_bsp │ │ ├── .cproject │ │ ├── .force_relink │ │ ├── .project │ │ ├── .settings │ │ └── language.settings.xml │ │ ├── create-this-bsp │ │ └── settings.bsp ├── DE10_NANO_MIL_PAINTER │ ├── DE10_NANO_MIL_PAINTER.qpf │ ├── DE10_NANO_MIL_PAINTER.qsf │ ├── DE10_NANO_MIL_PAINTER.sdc │ ├── DE10_NANO_MIL_PAINTER.v │ ├── MIL_PAINTER.qsys │ ├── MIL_PAINTER.sopcinfo │ ├── Makefile │ ├── ip │ │ ├── I8080_Controller │ │ │ ├── I8080_Controller.v │ │ │ ├── I8080_Controller_hw.tcl │ │ │ └── I8080_Controller_hw.tcl~ │ │ ├── i2c_opencores │ │ │ ├── Docs │ │ │ │ ├── I2C_tests.c │ │ │ │ └── i2c_specs.pdf │ │ │ ├── HAL │ │ │ │ ├── inc │ │ │ │ │ └── i2c_opencores.h │ │ │ │ └── src │ │ │ │ │ ├── component.mk │ │ │ │ │ └── i2c_opencores.c │ │ │ ├── i2c_master_bit_ctrl.v │ │ │ ├── i2c_master_byte_ctrl.v │ │ │ ├── i2c_master_defines.v │ │ │ ├── i2c_master_top.v │ │ │ ├── i2c_opencores.v │ │ │ ├── i2c_opencores_hw.tcl │ │ │ ├── i2c_opencores_sw.tcl │ │ │ ├── inc │ │ │ │ └── i2c_opencores_regs.h │ │ │ ├── test.v │ │ │ └── timescale.v │ │ ├── lcd_pll │ │ │ ├── lcd_pll.qip │ │ │ ├── lcd_pll.v │ │ │ └── lcd_pll │ │ │ │ ├── lcd_pll_0002.qip │ │ │ │ └── lcd_pll_0002.v │ │ ├── mister_sdram_32m │ │ │ ├── mister_sdram32m_controller.v │ │ │ └── mister_sdram32m_controller_hw.tcl │ │ └── mister_sdram_64m │ │ │ ├── mister_sdram64m_controller.v │ │ │ └── mister_sdram64m_controller_hw.tcl │ └── software │ │ ├── nios2_mcu_bsp │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── language.settings.xml │ │ ├── HAL │ │ │ ├── inc │ │ │ │ ├── alt_types.h │ │ │ │ ├── altera_nios2_gen2_irq.h │ │ │ │ ├── io.h │ │ │ │ ├── nios2.h │ │ │ │ ├── os │ │ │ │ │ ├── alt_flag.h │ │ │ │ │ ├── alt_hooks.h │ │ │ │ │ ├── alt_sem.h │ │ │ │ │ └── alt_syscall.h │ │ │ │ ├── priv │ │ │ │ │ ├── alt_alarm.h │ │ │ │ │ ├── alt_busy_sleep.h │ │ │ │ │ ├── alt_dev_llist.h │ │ │ │ │ ├── alt_exception_handler_registry.h │ │ │ │ │ ├── alt_file.h │ │ │ │ │ ├── alt_iic_isr_register.h │ │ │ │ │ ├── alt_irq_table.h │ │ │ │ │ ├── alt_legacy_irq.h │ │ │ │ │ ├── alt_no_error.h │ │ │ │ │ └── nios2_gmon_data.h │ │ │ │ └── sys │ │ │ │ │ ├── alt_alarm.h │ │ │ │ │ ├── alt_cache.h │ │ │ │ │ ├── alt_debug.h │ │ │ │ │ ├── alt_dev.h │ │ │ │ │ ├── alt_dma.h │ │ │ │ │ ├── alt_dma_dev.h │ │ │ │ │ ├── alt_driver.h │ │ │ │ │ ├── alt_errno.h │ │ │ │ │ ├── alt_exceptions.h │ │ │ │ │ ├── alt_flash.h │ │ │ │ │ ├── alt_flash_dev.h │ │ │ │ │ ├── alt_flash_types.h │ │ │ │ │ ├── alt_irq.h │ │ │ │ │ ├── alt_irq_entry.h │ │ │ │ │ ├── alt_license_reminder_ucosii.h │ │ │ │ │ ├── alt_llist.h │ │ │ │ │ ├── alt_load.h │ │ │ │ │ ├── alt_log_printf.h │ │ │ │ │ ├── alt_set_args.h │ │ │ │ │ ├── alt_sim.h │ │ │ │ │ ├── alt_stack.h │ │ │ │ │ ├── alt_stdio.h │ │ │ │ │ ├── alt_sys_init.h │ │ │ │ │ ├── alt_sys_wrappers.h │ │ │ │ │ ├── alt_timestamp.h │ │ │ │ │ ├── alt_warning.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ └── termios.h │ │ │ └── src │ │ │ │ ├── alt_alarm_start.c │ │ │ │ ├── alt_busy_sleep.c │ │ │ │ ├── alt_close.c │ │ │ │ ├── alt_dcache_flush.c │ │ │ │ ├── alt_dcache_flush_all.c │ │ │ │ ├── alt_dcache_flush_no_writeback.c │ │ │ │ ├── alt_dev.c │ │ │ │ ├── alt_dev_llist_insert.c │ │ │ │ ├── alt_dma_rxchan_open.c │ │ │ │ ├── alt_dma_txchan_open.c │ │ │ │ ├── alt_do_ctors.c │ │ │ │ ├── alt_do_dtors.c │ │ │ │ ├── alt_ecc_fatal_entry.S │ │ │ │ ├── alt_ecc_fatal_exception.c │ │ │ │ ├── alt_env_lock.c │ │ │ │ ├── alt_environ.c │ │ │ │ ├── alt_errno.c │ │ │ │ ├── alt_exception_entry.S │ │ │ │ ├── alt_exception_muldiv.S │ │ │ │ ├── alt_exception_trap.S │ │ │ │ ├── alt_execve.c │ │ │ │ ├── alt_exit.c │ │ │ │ ├── alt_fcntl.c │ │ │ │ ├── alt_fd_lock.c │ │ │ │ ├── alt_fd_unlock.c │ │ │ │ ├── alt_find_dev.c │ │ │ │ ├── alt_find_file.c │ │ │ │ ├── alt_flash_dev.c │ │ │ │ ├── alt_fork.c │ │ │ │ ├── alt_fs_reg.c │ │ │ │ ├── alt_fstat.c │ │ │ │ ├── alt_get_fd.c │ │ │ │ ├── alt_getchar.c │ │ │ │ ├── alt_getpid.c │ │ │ │ ├── alt_gettod.c │ │ │ │ ├── alt_gmon.c │ │ │ │ ├── alt_icache_flush.c │ │ │ │ ├── alt_icache_flush_all.c │ │ │ │ ├── alt_iic.c │ │ │ │ ├── alt_iic_isr_register.c │ │ │ │ ├── alt_instruction_exception_entry.c │ │ │ │ ├── alt_instruction_exception_register.c │ │ │ │ ├── alt_io_redirect.c │ │ │ │ ├── alt_ioctl.c │ │ │ │ ├── alt_irq_entry.S │ │ │ │ ├── alt_irq_handler.c │ │ │ │ ├── alt_irq_register.c │ │ │ │ ├── alt_irq_vars.c │ │ │ │ ├── alt_isatty.c │ │ │ │ ├── alt_kill.c │ │ │ │ ├── alt_link.c │ │ │ │ ├── alt_load.c │ │ │ │ ├── alt_log_macro.S │ │ │ │ ├── alt_log_printf.c │ │ │ │ ├── alt_lseek.c │ │ │ │ ├── alt_main.c │ │ │ │ ├── alt_malloc_lock.c │ │ │ │ ├── alt_mcount.S │ │ │ │ ├── alt_open.c │ │ │ │ ├── alt_printf.c │ │ │ │ ├── alt_putchar.c │ │ │ │ ├── alt_putcharbuf.c │ │ │ │ ├── alt_putstr.c │ │ │ │ ├── alt_read.c │ │ │ │ ├── alt_release_fd.c │ │ │ │ ├── alt_remap_cached.c │ │ │ │ ├── alt_remap_uncached.c │ │ │ │ ├── alt_rename.c │ │ │ │ ├── alt_sbrk.c │ │ │ │ ├── alt_settod.c │ │ │ │ ├── alt_software_exception.S │ │ │ │ ├── alt_stat.c │ │ │ │ ├── alt_tick.c │ │ │ │ ├── alt_times.c │ │ │ │ ├── alt_uncached_free.c │ │ │ │ ├── alt_uncached_malloc.c │ │ │ │ ├── alt_unlink.c │ │ │ │ ├── alt_usleep.c │ │ │ │ ├── alt_wait.c │ │ │ │ ├── alt_write.c │ │ │ │ ├── altera_nios2_gen2_irq.c │ │ │ │ └── crt0.S │ │ ├── Makefile │ │ ├── alt_sys_init.c │ │ ├── create-this-bsp │ │ ├── drivers │ │ │ ├── inc │ │ │ │ ├── altera_avalon_epcs_flash_controller.h │ │ │ │ ├── altera_avalon_jtag_uart.h │ │ │ │ ├── altera_avalon_jtag_uart_fd.h │ │ │ │ ├── altera_avalon_jtag_uart_regs.h │ │ │ │ ├── altera_avalon_pio_regs.h │ │ │ │ ├── altera_avalon_spi.h │ │ │ │ ├── altera_avalon_spi_regs.h │ │ │ │ ├── altera_avalon_sysid_qsys.h │ │ │ │ ├── altera_avalon_sysid_qsys_regs.h │ │ │ │ ├── altera_avalon_timer.h │ │ │ │ ├── altera_avalon_timer_regs.h │ │ │ │ └── epcs_commands.h │ │ │ └── src │ │ │ │ ├── altera_avalon_epcs_flash_controller.c │ │ │ │ ├── altera_avalon_jtag_uart_fd.c │ │ │ │ ├── altera_avalon_jtag_uart_init.c │ │ │ │ ├── altera_avalon_jtag_uart_ioctl.c │ │ │ │ ├── altera_avalon_jtag_uart_read.c │ │ │ │ ├── altera_avalon_jtag_uart_write.c │ │ │ │ ├── altera_avalon_spi.c │ │ │ │ ├── altera_avalon_sysid_qsys.c │ │ │ │ ├── altera_avalon_timer_sc.c │ │ │ │ ├── altera_avalon_timer_ts.c │ │ │ │ ├── altera_avalon_timer_vars.c │ │ │ │ └── epcs_commands.c │ │ ├── linker.h │ │ ├── linker.x │ │ ├── mem_init.mk │ │ ├── memory.gdb │ │ ├── public.mk │ │ ├── settings.bsp │ │ ├── summary.html │ │ └── system.h │ │ └── tftlcd_ili9806g │ │ ├── .cproject │ │ ├── .force_relink │ │ ├── .project │ │ ├── .settings │ │ └── language.settings.xml │ │ ├── Makefile │ │ ├── create-this-app │ │ ├── fonts │ │ ├── fonts.h │ │ ├── tahomabold_20.c │ │ └── tahomabold_32.c │ │ ├── geometry.c │ │ ├── geometry.h │ │ ├── gesture.c │ │ ├── gesture.h │ │ ├── graphic_lib │ │ ├── simple_graphics.c │ │ ├── simple_graphics.h │ │ ├── simple_text.c │ │ └── simple_text.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── gui_vpg.c │ │ ├── lcd.c │ │ ├── lcd.h │ │ ├── main.c │ │ ├── readme.txt │ │ ├── terasic_includes.h │ │ ├── terasic_lib │ │ ├── I2C.c │ │ ├── I2C.h │ │ ├── I2C_core.c │ │ ├── I2C_core.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── multi_touch2.c │ │ ├── multi_touch2.h │ │ ├── queue.c │ │ ├── queue.h │ │ └── terasic_includes.h │ │ ├── vip_fr.c │ │ └── vip_fr.h ├── DE10_NANO_MIL_spi │ ├── DE10_NANO_MIL_spi.qpf │ ├── DE10_NANO_MIL_spi.qsf │ ├── DE10_NANO_MIL_spi.sdc │ ├── DE10_NANO_MIL_spi.v │ ├── Makefile │ ├── nios2_system.qsys │ └── software │ │ ├── ili9806g_tft │ │ ├── .cproject │ │ ├── .force_relink │ │ ├── .project │ │ ├── .settings │ │ │ └── language.settings.xml │ │ ├── Makefile │ │ ├── create-this-app │ │ ├── lcd │ │ │ ├── lcd.c │ │ │ └── lcd.h │ │ ├── main.c │ │ └── readme.txt │ │ └── ili9806g_tft_bsp │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ └── language.settings.xml │ │ ├── create-this-bsp │ │ └── settings.bsp ├── DE1_SOC_Linux_RGB │ ├── DE1_SOC_Linux_RGB.qpf │ ├── DE1_SOC_Linux_RGB.qsf │ ├── DE1_SOC_Linux_RGB.sdc │ ├── DE1_SOC_Linux_RGB.v │ ├── Makefile │ ├── ip │ │ ├── TERASIC_AUDIO │ │ │ ├── AUDIO_ADC.v │ │ │ ├── AUDIO_DAC.v │ │ │ ├── AUDIO_IF.v │ │ │ ├── AUDIO_IF_hw.tcl │ │ │ ├── audio_fifo.qip │ │ │ ├── audio_fifo.v │ │ │ ├── audio_fifo_wave0.jpg │ │ │ ├── audio_fifo_wave1.jpg │ │ │ └── audio_fifo_waveforms.html │ │ ├── TERASIC_IRM │ │ │ ├── TERASIC_IRM.v │ │ │ ├── TERASIC_IRM_hw.tcl │ │ │ └── irda_receive_terasic.v │ │ ├── debounce │ │ │ └── debounce.v │ │ ├── i2c_opencores │ │ │ ├── Docs │ │ │ │ ├── I2C_tests.c │ │ │ │ └── i2c_specs.pdf │ │ │ ├── HAL │ │ │ │ ├── inc │ │ │ │ │ └── i2c_opencores.h │ │ │ │ └── src │ │ │ │ │ ├── component.mk │ │ │ │ │ └── i2c_opencores.c │ │ │ ├── i2c_master_bit_ctrl.v │ │ │ ├── i2c_master_byte_ctrl.v │ │ │ ├── i2c_master_defines.v │ │ │ ├── i2c_master_top.v │ │ │ ├── i2c_opencores.v │ │ │ ├── i2c_opencores_hw.tcl │ │ │ ├── i2c_opencores_sw.tcl │ │ │ ├── inc │ │ │ │ └── i2c_opencores_regs.h │ │ │ ├── test.v │ │ │ └── timescale.v │ │ ├── intr_capturer │ │ │ ├── intr_capturer.v │ │ │ └── intr_capturer_hw.tcl │ │ ├── lcd_pll │ │ │ ├── lcd_pll.qip │ │ │ ├── lcd_pll.v │ │ │ └── lcd_pll │ │ │ │ ├── lcd_pll_0002.qip │ │ │ │ └── lcd_pll_0002.v │ │ ├── my_log_generator │ │ │ ├── log.mif │ │ │ ├── log_512x54.mif │ │ │ ├── log_fifo.v │ │ │ ├── log_generator.v │ │ │ ├── log_generator_hw.tcl │ │ │ └── log_rom.v │ │ └── spi_init │ │ │ └── lcd_spi_init.v │ ├── soc_system.qsys │ └── sof_to_rbf.bat └── DE1_SOC_MIL_PAINTER │ ├── DE1_SOC_MIL_PAINTER.qpf │ ├── DE1_SOC_MIL_PAINTER.qsf │ ├── DE1_SOC_MIL_PAINTER.sdc │ ├── DE1_SOC_MIL_PAINTER.v │ ├── MIL_PAINTER.qsys │ ├── Makefile │ ├── ip │ ├── I8080_Controller │ │ ├── I8080_Controller.v │ │ ├── I8080_Controller_hw.tcl │ │ └── I8080_Controller_hw.tcl~ │ ├── i2c_opencores │ │ ├── Docs │ │ │ ├── I2C_tests.c │ │ │ └── i2c_specs.pdf │ │ ├── HAL │ │ │ ├── inc │ │ │ │ └── i2c_opencores.h │ │ │ └── src │ │ │ │ ├── component.mk │ │ │ │ └── i2c_opencores.c │ │ ├── i2c_master_bit_ctrl.v │ │ ├── i2c_master_byte_ctrl.v │ │ ├── i2c_master_defines.v │ │ ├── i2c_master_top.v │ │ ├── i2c_opencores.v │ │ ├── i2c_opencores_hw.tcl │ │ ├── i2c_opencores_sw.tcl │ │ ├── inc │ │ │ └── i2c_opencores_regs.h │ │ ├── test.v │ │ └── timescale.v │ └── lcd_pll │ │ ├── lcd_pll.qip │ │ ├── lcd_pll.v │ │ └── lcd_pll │ │ ├── lcd_pll_0002.qip │ │ └── lcd_pll_0002.v │ └── software │ ├── tftlcd_ili9806g │ ├── .cproject │ ├── .force_relink │ ├── .project │ ├── Makefile │ ├── create-this-app │ ├── fonts │ │ ├── fonts.h │ │ ├── tahomabold_20.c │ │ └── tahomabold_32.c │ ├── geometry.c │ ├── geometry.h │ ├── gesture.c │ ├── gesture.h │ ├── graphic_lib │ │ ├── simple_graphics.c │ │ ├── simple_graphics.h │ │ ├── simple_text.c │ │ └── simple_text.h │ ├── gui.c │ ├── gui.h │ ├── gui_vpg.c │ ├── lcd.c │ ├── lcd.h │ ├── main.c │ ├── readme.txt │ ├── terasic_includes.h │ ├── terasic_lib │ │ ├── I2C.c │ │ ├── I2C.h │ │ ├── I2C_core.c │ │ ├── I2C_core.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── multi_touch2.c │ │ ├── multi_touch2.h │ │ ├── queue.c │ │ ├── queue.h │ │ └── terasic_includes.h │ ├── vip_fr.c │ └── vip_fr.h │ └── tftlcd_ili9806g_bsp │ ├── .cproject │ ├── .force_relink │ ├── .project │ ├── Makefile │ ├── create-this-bsp │ └── settings.bsp ├── IP ├── I8080_Controller │ ├── I8080_Controller.v │ └── I8080_Controller_hw.tcl ├── i2c_opencores │ ├── Docs │ │ ├── I2C_tests.c │ │ └── i2c_specs.pdf │ ├── HAL │ │ ├── inc │ │ │ └── i2c_opencores.h │ │ └── src │ │ │ ├── component.mk │ │ │ └── i2c_opencores.c │ ├── i2c_master_bit_ctrl.v │ ├── i2c_master_byte_ctrl.v │ ├── i2c_master_defines.v │ ├── i2c_master_top.v │ ├── i2c_opencores.v │ ├── i2c_opencores_hw.tcl │ ├── i2c_opencores_sw.tcl │ ├── inc │ │ └── i2c_opencores_regs.h │ ├── test.v │ └── timescale.v └── spi_init │ └── lcd_spi_init.v ├── LICENSE ├── Linux_driver ├── 3.18.x │ └── touchscreen │ │ ├── ft5406_ts.h │ │ └── ft_5406.c └── 4.19.x │ ├── socfpga_cyclone5_de10_nano.dts │ ├── tinydrm │ ├── fb_ili9806.c │ ├── tinydrm-ili9806.c │ └── tinydrm-ili9806.h │ └── touchscreen │ └── ft_5x16.c ├── README.md ├── Schematic_PCB ├── 5.0inch_IPS_for_TerasicDEs.PDF ├── Altium_Designer │ ├── 5.0inch_IPS_for_TerasicDEs.PcbDoc │ ├── 5.0inch_IPS_for_TerasicDEs.PrjPCB │ └── 5.0inch_IPS_for_TerasicDEs.SchDoc └── KiCad │ └── README.txt ├── documents └── how_to_use.md └── figure ├── clocked_video_out_timing.png ├── de1soc_linux.png └── pcb.png /Datasheet/FT5x16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Datasheet/FT5x16.pdf -------------------------------------------------------------------------------- /Datasheet/ILI9806G.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Datasheet/ILI9806G.pdf -------------------------------------------------------------------------------- /Datasheet/TK050F5590_spec_v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Datasheet/TK050F5590_spec_v1.1.pdf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/DE10_NANO_Linux_RGB.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/DE10_NANO_Linux_RGB.qpf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/DE10_NANO_Linux_RGB.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/DE10_NANO_Linux_RGB.qsf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/DE10_NANO_Linux_RGB.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/DE10_NANO_Linux_RGB.sdc -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/DE10_NANO_Linux_RGB.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/DE10_NANO_Linux_RGB.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/I2C_Controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/I2C_Controller.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/I2C_HDMI_Config.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/I2C_HDMI_Config.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/I2C_WRITE_WDATA.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/I2C_WRITE_WDATA.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/Makefile -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/generate_hps_qsys_header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/generate_hps_qsys_header.sh -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/hps_common_board_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/hps_common_board_info.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/altsource_probe/hps_reset.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/altsource_probe/hps_reset.qip -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/altsource_probe/hps_reset.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/altsource_probe/hps_reset.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/altsource_probe/hps_reset_bb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/altsource_probe/hps_reset_bb.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/debounce/debounce.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/debounce/debounce.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/edge_detect/altera_edge_detector.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/edge_detect/altera_edge_detector.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/Docs/I2C_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/Docs/I2C_tests.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/Docs/i2c_specs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/Docs/i2c_specs.pdf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/HAL/inc/i2c_opencores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/HAL/inc/i2c_opencores.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/HAL/src/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/HAL/src/component.mk -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/HAL/src/i2c_opencores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/HAL/src/i2c_opencores.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_master_bit_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_master_bit_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_master_byte_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_master_byte_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_master_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_master_defines.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_master_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_master_top.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_opencores.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_opencores.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_opencores_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_opencores_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_opencores_sw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/i2c_opencores_sw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/inc/i2c_opencores_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/inc/i2c_opencores_regs.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/test.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/i2c_opencores/timescale.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns / 10ps 2 | 3 | -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/intr_capturer/intr_capturer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/intr_capturer/intr_capturer.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/intr_capturer/intr_capturer_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/intr_capturer/intr_capturer_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/lcd_pll/lcd_pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/lcd_pll/lcd_pll.qip -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/lcd_pll/lcd_pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/lcd_pll/lcd_pll.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/lcd_pll/lcd_pll/lcd_pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/lcd_pll/lcd_pll/lcd_pll_0002.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/ip/spi_init/lcd_spi_init.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/ip/spi_init/lcd_spi_init.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/soc_system.qsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/soc_system.qsys -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_RGB/soc_system_board_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_RGB/soc_system_board_info.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/DE10_NANO_Linux_i80.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/DE10_NANO_Linux_i80.qpf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/DE10_NANO_Linux_i80.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/DE10_NANO_Linux_i80.qsf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/DE10_NANO_Linux_i80.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/DE10_NANO_Linux_i80.sdc -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/DE10_NANO_Linux_i80.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/DE10_NANO_Linux_i80.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/I2C_Controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/I2C_Controller.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/I2C_HDMI_Config.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/I2C_HDMI_Config.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/I2C_WRITE_WDATA.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/I2C_WRITE_WDATA.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/Makefile -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/generate_hps_qsys_header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/generate_hps_qsys_header.sh -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/hps_common_board_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/hps_common_board_info.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/I8080_Controller/I8080_Controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/I8080_Controller/I8080_Controller.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/I8080_Controller/I8080_Controller_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/I8080_Controller/I8080_Controller_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/altsource_probe/hps_reset.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/altsource_probe/hps_reset.qip -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/altsource_probe/hps_reset.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/altsource_probe/hps_reset.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/altsource_probe/hps_reset_bb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/altsource_probe/hps_reset_bb.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/debounce/debounce.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/debounce/debounce.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/edge_detect/altera_edge_detector.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/edge_detect/altera_edge_detector.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/Docs/I2C_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/Docs/I2C_tests.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/Docs/i2c_specs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/Docs/i2c_specs.pdf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/HAL/inc/i2c_opencores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/HAL/inc/i2c_opencores.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/HAL/src/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/HAL/src/component.mk -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/HAL/src/i2c_opencores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/HAL/src/i2c_opencores.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_master_bit_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_master_bit_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_master_byte_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_master_byte_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_master_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_master_defines.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_master_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_master_top.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_opencores.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_opencores.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_opencores_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_opencores_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_opencores_sw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/i2c_opencores_sw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/inc/i2c_opencores_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/inc/i2c_opencores_regs.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/test.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/i2c_opencores/timescale.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns / 10ps 2 | 3 | -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/intr_capturer/intr_capturer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/intr_capturer/intr_capturer.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/intr_capturer/intr_capturer_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/intr_capturer/intr_capturer_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/lcd_pll/lcd_pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/lcd_pll/lcd_pll.qip -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/lcd_pll/lcd_pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/lcd_pll/lcd_pll.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/lcd_pll/lcd_pll/lcd_pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/lcd_pll/lcd_pll/lcd_pll_0002.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/ip/spi_init/lcd_spi_init.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/ip/spi_init/lcd_spi_init.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/soc_system.qsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/soc_system.qsys -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/soc_system_board_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/soc_system_board_info.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_Linux_i80/soc_system_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_Linux_i80/soc_system_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/DE10_NANO_MIL_8bits.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/DE10_NANO_MIL_8bits.qpf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/DE10_NANO_MIL_8bits.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/DE10_NANO_MIL_8bits.qsf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/DE10_NANO_MIL_8bits.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/DE10_NANO_MIL_8bits.sdc -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/DE10_NANO_MIL_8bits.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/DE10_NANO_MIL_8bits.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/Makefile -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/nios2_system.qsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/nios2_system.qsys -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/.cproject -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/.project -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/.settings/language.settings.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/Makefile -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/create-this-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/create-this-app -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/lcd/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/lcd/lcd.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/lcd/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/lcd/lcd.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/main.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft/readme.txt -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/.cproject -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/.force_relink: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/.project -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/.settings/language.settings.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/create-this-bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/create-this-bsp -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/settings.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_8bits/software/ili9806g_tft_bsp/settings.bsp -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/DE10_NANO_MIL_PAINTER.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/DE10_NANO_MIL_PAINTER.qpf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/DE10_NANO_MIL_PAINTER.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/DE10_NANO_MIL_PAINTER.qsf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/DE10_NANO_MIL_PAINTER.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/DE10_NANO_MIL_PAINTER.sdc -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/DE10_NANO_MIL_PAINTER.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/DE10_NANO_MIL_PAINTER.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/MIL_PAINTER.qsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/MIL_PAINTER.qsys -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/MIL_PAINTER.sopcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/MIL_PAINTER.sopcinfo -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/Makefile -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/I8080_Controller/I8080_Controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/I8080_Controller/I8080_Controller.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/I8080_Controller/I8080_Controller_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/I8080_Controller/I8080_Controller_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/I8080_Controller/I8080_Controller_hw.tcl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/I8080_Controller/I8080_Controller_hw.tcl~ -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/Docs/I2C_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/Docs/I2C_tests.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/Docs/i2c_specs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/Docs/i2c_specs.pdf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/HAL/inc/i2c_opencores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/HAL/inc/i2c_opencores.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/HAL/src/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/HAL/src/component.mk -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/HAL/src/i2c_opencores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/HAL/src/i2c_opencores.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_master_bit_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_master_bit_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_master_byte_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_master_byte_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_master_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_master_defines.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_master_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_master_top.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_opencores.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_opencores.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_opencores_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_opencores_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_opencores_sw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/i2c_opencores_sw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/inc/i2c_opencores_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/inc/i2c_opencores_regs.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/test.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/i2c_opencores/timescale.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns / 10ps 2 | 3 | -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/lcd_pll/lcd_pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/lcd_pll/lcd_pll.qip -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/lcd_pll/lcd_pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/lcd_pll/lcd_pll.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/lcd_pll/lcd_pll/lcd_pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/lcd_pll/lcd_pll/lcd_pll_0002.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/mister_sdram_32m/mister_sdram32m_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/mister_sdram_32m/mister_sdram32m_controller.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/mister_sdram_32m/mister_sdram32m_controller_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/mister_sdram_32m/mister_sdram32m_controller_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/mister_sdram_64m/mister_sdram64m_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/mister_sdram_64m/mister_sdram64m_controller.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/ip/mister_sdram_64m/mister_sdram64m_controller_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/ip/mister_sdram_64m/mister_sdram64m_controller_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/.cproject -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/.project -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/.settings/language.settings.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/alt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/alt_types.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/altera_nios2_gen2_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/altera_nios2_gen2_irq.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/io.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/nios2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/nios2.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/os/alt_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/os/alt_flag.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/os/alt_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/os/alt_hooks.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/os/alt_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/os/alt_sem.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/os/alt_syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/os/alt_syscall.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_alarm.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_busy_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_busy_sleep.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_dev_llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_dev_llist.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_exception_handler_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_exception_handler_registry.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_file.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_iic_isr_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_iic_isr_register.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_irq_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_irq_table.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_legacy_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_legacy_irq.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_no_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/alt_no_error.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/nios2_gmon_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/priv/nios2_gmon_data.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_alarm.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_cache.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_debug.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_dev.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_dma.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_dma_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_dma_dev.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_driver.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_errno.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_exceptions.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_flash.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_flash_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_flash_dev.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_flash_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_flash_types.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_irq.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_irq_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_irq_entry.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_license_reminder_ucosii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_license_reminder_ucosii.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_llist.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_load.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_log_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_log_printf.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_set_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_set_args.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_sim.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_stack.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_stdio.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_sys_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_sys_init.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_sys_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_sys_wrappers.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_timestamp.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/alt_warning.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/ioctl.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/inc/sys/termios.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_alarm_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_alarm_start.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_busy_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_busy_sleep.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_close.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dcache_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dcache_flush.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dcache_flush_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dcache_flush_all.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dcache_flush_no_writeback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dcache_flush_no_writeback.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dev.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dev_llist_insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dev_llist_insert.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dma_rxchan_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dma_rxchan_open.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dma_txchan_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_dma_txchan_open.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_do_ctors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_do_ctors.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_do_dtors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_do_dtors.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_ecc_fatal_entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_ecc_fatal_entry.S -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_ecc_fatal_exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_ecc_fatal_exception.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_env_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_env_lock.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_environ.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_errno.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_exception_entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_exception_entry.S -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_exception_muldiv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_exception_muldiv.S -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_exception_trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_exception_trap.S -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_execve.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_exit.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fcntl.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fd_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fd_lock.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fd_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fd_unlock.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_find_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_find_dev.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_find_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_find_file.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_flash_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_flash_dev.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fork.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fs_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fs_reg.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_fstat.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_get_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_get_fd.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_getchar.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_getpid.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_gettod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_gettod.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_gmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_gmon.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_icache_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_icache_flush.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_icache_flush_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_icache_flush_all.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_iic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_iic.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_iic_isr_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_iic_isr_register.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_instruction_exception_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_instruction_exception_entry.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_instruction_exception_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_instruction_exception_register.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_io_redirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_io_redirect.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_ioctl.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_irq_entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_irq_entry.S -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_irq_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_irq_handler.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_irq_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_irq_register.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_irq_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_irq_vars.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_isatty.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_kill.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_link.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_load.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_log_macro.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_log_macro.S -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_log_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_log_printf.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_lseek.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_main.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_malloc_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_malloc_lock.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_mcount.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_mcount.S -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_open.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_printf.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_putchar.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_putcharbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_putcharbuf.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_putstr.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_read.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_release_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_release_fd.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_remap_cached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_remap_cached.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_remap_uncached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_remap_uncached.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_rename.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_sbrk.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_settod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_settod.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_software_exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_software_exception.S -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_stat.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_tick.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_times.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_uncached_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_uncached_free.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_uncached_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_uncached_malloc.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_unlink.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_usleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_usleep.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_wait.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/alt_write.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/altera_nios2_gen2_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/altera_nios2_gen2_irq.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/HAL/src/crt0.S -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/Makefile -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/alt_sys_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/alt_sys_init.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/create-this-bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/create-this-bsp -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_epcs_flash_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_epcs_flash_controller.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_jtag_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_jtag_uart.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_jtag_uart_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_jtag_uart_fd.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_jtag_uart_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_jtag_uart_regs.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_pio_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_pio_regs.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_spi.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_spi_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_spi_regs.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_sysid_qsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_sysid_qsys.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_sysid_qsys_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_sysid_qsys_regs.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_timer.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_timer_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/altera_avalon_timer_regs.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/epcs_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/inc/epcs_commands.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_epcs_flash_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_epcs_flash_controller.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_fd.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_init.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_ioctl.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_read.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_jtag_uart_write.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_spi.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_sysid_qsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_sysid_qsys.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_timer_sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_timer_sc.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_timer_ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_timer_ts.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_timer_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/altera_avalon_timer_vars.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/epcs_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/drivers/src/epcs_commands.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/linker.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/linker.x -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/mem_init.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/mem_init.mk -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/memory.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/memory.gdb -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/public.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/public.mk -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/settings.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/settings.bsp -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/summary.html -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/nios2_mcu_bsp/system.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/.cproject -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/.force_relink: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/.project -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/.settings/language.settings.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/Makefile -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/create-this-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/create-this-app -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/fonts/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/fonts/fonts.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/fonts/tahomabold_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/fonts/tahomabold_20.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/fonts/tahomabold_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/fonts/tahomabold_32.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/geometry.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/geometry.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gesture.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gesture.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_graphics.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_graphics.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_text.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_text.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gui.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gui.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gui_vpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/gui_vpg.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/lcd.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/lcd.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/main.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/readme.txt -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_includes.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C_core.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C_core.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/debug.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/debug.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/multi_touch2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/multi_touch2.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/multi_touch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/multi_touch2.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/queue.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/queue.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/terasic_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/terasic_includes.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/vip_fr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/vip_fr.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/vip_fr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_PAINTER/software/tftlcd_ili9806g/vip_fr.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/DE10_NANO_MIL_spi.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/DE10_NANO_MIL_spi.qpf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/DE10_NANO_MIL_spi.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/DE10_NANO_MIL_spi.qsf -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/DE10_NANO_MIL_spi.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/DE10_NANO_MIL_spi.sdc -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/DE10_NANO_MIL_spi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/DE10_NANO_MIL_spi.v -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/Makefile -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/nios2_system.qsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/nios2_system.qsys -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/.cproject -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/.force_relink: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/.project -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/.settings/language.settings.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/Makefile -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/create-this-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/create-this-app -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/lcd/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/lcd/lcd.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/lcd/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/lcd/lcd.h -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/main.c -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft/readme.txt -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/.cproject -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/.project -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/.settings/language.settings.xml -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/create-this-bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/create-this-bsp -------------------------------------------------------------------------------- /Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/settings.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE10_NANO_MIL_spi/software/ili9806g_tft_bsp/settings.bsp -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/DE1_SOC_Linux_RGB.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/DE1_SOC_Linux_RGB.qpf -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/DE1_SOC_Linux_RGB.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/DE1_SOC_Linux_RGB.qsf -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/DE1_SOC_Linux_RGB.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/DE1_SOC_Linux_RGB.sdc -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/DE1_SOC_Linux_RGB.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/DE1_SOC_Linux_RGB.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/Makefile -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/AUDIO_ADC.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/AUDIO_ADC.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/AUDIO_DAC.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/AUDIO_DAC.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/AUDIO_IF.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/AUDIO_IF.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/AUDIO_IF_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/AUDIO_IF_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo.qip -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo_wave0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo_wave0.jpg -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo_wave1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo_wave1.jpg -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo_waveforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_AUDIO/audio_fifo_waveforms.html -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_IRM/TERASIC_IRM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_IRM/TERASIC_IRM.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_IRM/TERASIC_IRM_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_IRM/TERASIC_IRM_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_IRM/irda_receive_terasic.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/TERASIC_IRM/irda_receive_terasic.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/debounce/debounce.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/debounce/debounce.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/Docs/I2C_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/Docs/I2C_tests.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/Docs/i2c_specs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/Docs/i2c_specs.pdf -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/HAL/inc/i2c_opencores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/HAL/inc/i2c_opencores.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/HAL/src/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/HAL/src/component.mk -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/HAL/src/i2c_opencores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/HAL/src/i2c_opencores.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_master_bit_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_master_bit_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_master_byte_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_master_byte_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_master_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_master_defines.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_master_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_master_top.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_opencores.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_opencores.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_opencores_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_opencores_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_opencores_sw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/i2c_opencores_sw.tcl -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/inc/i2c_opencores_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/inc/i2c_opencores_regs.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/test.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/i2c_opencores/timescale.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns / 10ps 2 | 3 | -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/intr_capturer/intr_capturer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/intr_capturer/intr_capturer.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/intr_capturer/intr_capturer_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/intr_capturer/intr_capturer_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/lcd_pll/lcd_pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/lcd_pll/lcd_pll.qip -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/lcd_pll/lcd_pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/lcd_pll/lcd_pll.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/lcd_pll/lcd_pll/lcd_pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/lcd_pll/lcd_pll/lcd_pll_0002.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log.mif -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_512x54.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_512x54.mif -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_fifo.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_generator.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_generator.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_generator_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_generator_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_rom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/my_log_generator/log_rom.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/ip/spi_init/lcd_spi_init.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/ip/spi_init/lcd_spi_init.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/soc_system.qsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_Linux_RGB/soc_system.qsys -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_Linux_RGB/sof_to_rbf.bat: -------------------------------------------------------------------------------- 1 | %QUARTUS_ROOTDIR%\\bin\\quartus_cpf -c DE1_SOC_Linux_RGB.sof soc_system.rbf 2 | pause 3 | -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/DE1_SOC_MIL_PAINTER.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/DE1_SOC_MIL_PAINTER.qpf -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/DE1_SOC_MIL_PAINTER.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/DE1_SOC_MIL_PAINTER.qsf -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/DE1_SOC_MIL_PAINTER.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/DE1_SOC_MIL_PAINTER.sdc -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/DE1_SOC_MIL_PAINTER.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/DE1_SOC_MIL_PAINTER.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/MIL_PAINTER.qsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/MIL_PAINTER.qsys -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/Makefile -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/I8080_Controller/I8080_Controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/I8080_Controller/I8080_Controller.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/I8080_Controller/I8080_Controller_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/I8080_Controller/I8080_Controller_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/I8080_Controller/I8080_Controller_hw.tcl~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/I8080_Controller/I8080_Controller_hw.tcl~ -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/Docs/I2C_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/Docs/I2C_tests.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/Docs/i2c_specs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/Docs/i2c_specs.pdf -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/HAL/inc/i2c_opencores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/HAL/inc/i2c_opencores.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/HAL/src/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/HAL/src/component.mk -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/HAL/src/i2c_opencores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/HAL/src/i2c_opencores.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_master_bit_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_master_bit_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_master_byte_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_master_byte_ctrl.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_master_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_master_defines.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_master_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_master_top.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_opencores.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_opencores.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_opencores_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_opencores_hw.tcl -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_opencores_sw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/i2c_opencores_sw.tcl -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/inc/i2c_opencores_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/inc/i2c_opencores_regs.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/test.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/i2c_opencores/timescale.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns / 10ps 2 | 3 | -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/lcd_pll/lcd_pll.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/lcd_pll/lcd_pll.qip -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/lcd_pll/lcd_pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/lcd_pll/lcd_pll.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/lcd_pll/lcd_pll/lcd_pll_0002.qip -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/ip/lcd_pll/lcd_pll/lcd_pll_0002.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/ip/lcd_pll/lcd_pll/lcd_pll_0002.v -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/.cproject -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/.force_relink: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/.project -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/Makefile -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/create-this-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/create-this-app -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/fonts/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/fonts/fonts.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/fonts/tahomabold_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/fonts/tahomabold_20.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/fonts/tahomabold_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/fonts/tahomabold_32.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/geometry.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/geometry.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gesture.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gesture.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_graphics.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_graphics.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_text.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/graphic_lib/simple_text.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gui.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gui.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gui_vpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/gui_vpg.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/lcd.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/lcd.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/main.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/readme.txt -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_includes.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C_core.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/I2C_core.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/debug.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/debug.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/multi_touch2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/multi_touch2.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/multi_touch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/multi_touch2.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/queue.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/queue.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/terasic_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/terasic_lib/terasic_includes.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/vip_fr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/vip_fr.c -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/vip_fr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g/vip_fr.h -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/.cproject -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/.force_relink: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/.project -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/Makefile -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/create-this-bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/create-this-bsp -------------------------------------------------------------------------------- /Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/settings.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Demonstration/DE1_SOC_MIL_PAINTER/software/tftlcd_ili9806g_bsp/settings.bsp -------------------------------------------------------------------------------- /IP/I8080_Controller/I8080_Controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/I8080_Controller/I8080_Controller.v -------------------------------------------------------------------------------- /IP/I8080_Controller/I8080_Controller_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/I8080_Controller/I8080_Controller_hw.tcl -------------------------------------------------------------------------------- /IP/i2c_opencores/Docs/I2C_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/Docs/I2C_tests.c -------------------------------------------------------------------------------- /IP/i2c_opencores/Docs/i2c_specs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/Docs/i2c_specs.pdf -------------------------------------------------------------------------------- /IP/i2c_opencores/HAL/inc/i2c_opencores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/HAL/inc/i2c_opencores.h -------------------------------------------------------------------------------- /IP/i2c_opencores/HAL/src/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/HAL/src/component.mk -------------------------------------------------------------------------------- /IP/i2c_opencores/HAL/src/i2c_opencores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/HAL/src/i2c_opencores.c -------------------------------------------------------------------------------- /IP/i2c_opencores/i2c_master_bit_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/i2c_master_bit_ctrl.v -------------------------------------------------------------------------------- /IP/i2c_opencores/i2c_master_byte_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/i2c_master_byte_ctrl.v -------------------------------------------------------------------------------- /IP/i2c_opencores/i2c_master_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/i2c_master_defines.v -------------------------------------------------------------------------------- /IP/i2c_opencores/i2c_master_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/i2c_master_top.v -------------------------------------------------------------------------------- /IP/i2c_opencores/i2c_opencores.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/i2c_opencores.v -------------------------------------------------------------------------------- /IP/i2c_opencores/i2c_opencores_hw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/i2c_opencores_hw.tcl -------------------------------------------------------------------------------- /IP/i2c_opencores/i2c_opencores_sw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/i2c_opencores_sw.tcl -------------------------------------------------------------------------------- /IP/i2c_opencores/inc/i2c_opencores_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/inc/i2c_opencores_regs.h -------------------------------------------------------------------------------- /IP/i2c_opencores/test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/i2c_opencores/test.v -------------------------------------------------------------------------------- /IP/i2c_opencores/timescale.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns / 10ps 2 | 3 | -------------------------------------------------------------------------------- /IP/spi_init/lcd_spi_init.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/IP/spi_init/lcd_spi_init.v -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/LICENSE -------------------------------------------------------------------------------- /Linux_driver/3.18.x/touchscreen/ft5406_ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Linux_driver/3.18.x/touchscreen/ft5406_ts.h -------------------------------------------------------------------------------- /Linux_driver/3.18.x/touchscreen/ft_5406.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Linux_driver/3.18.x/touchscreen/ft_5406.c -------------------------------------------------------------------------------- /Linux_driver/4.19.x/socfpga_cyclone5_de10_nano.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Linux_driver/4.19.x/socfpga_cyclone5_de10_nano.dts -------------------------------------------------------------------------------- /Linux_driver/4.19.x/tinydrm/fb_ili9806.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Linux_driver/4.19.x/tinydrm/fb_ili9806.c -------------------------------------------------------------------------------- /Linux_driver/4.19.x/tinydrm/tinydrm-ili9806.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Linux_driver/4.19.x/tinydrm/tinydrm-ili9806.c -------------------------------------------------------------------------------- /Linux_driver/4.19.x/tinydrm/tinydrm-ili9806.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Linux_driver/4.19.x/tinydrm/tinydrm-ili9806.h -------------------------------------------------------------------------------- /Linux_driver/4.19.x/touchscreen/ft_5x16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Linux_driver/4.19.x/touchscreen/ft_5x16.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/README.md -------------------------------------------------------------------------------- /Schematic_PCB/5.0inch_IPS_for_TerasicDEs.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Schematic_PCB/5.0inch_IPS_for_TerasicDEs.PDF -------------------------------------------------------------------------------- /Schematic_PCB/Altium_Designer/5.0inch_IPS_for_TerasicDEs.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Schematic_PCB/Altium_Designer/5.0inch_IPS_for_TerasicDEs.PcbDoc -------------------------------------------------------------------------------- /Schematic_PCB/Altium_Designer/5.0inch_IPS_for_TerasicDEs.PrjPCB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Schematic_PCB/Altium_Designer/5.0inch_IPS_for_TerasicDEs.PrjPCB -------------------------------------------------------------------------------- /Schematic_PCB/Altium_Designer/5.0inch_IPS_for_TerasicDEs.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/Schematic_PCB/Altium_Designer/5.0inch_IPS_for_TerasicDEs.SchDoc -------------------------------------------------------------------------------- /Schematic_PCB/KiCad/README.txt: -------------------------------------------------------------------------------- 1 | convert form Altium Designer 2 | -------------------------------------------------------------------------------- /documents/how_to_use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/documents/how_to_use.md -------------------------------------------------------------------------------- /figure/clocked_video_out_timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/figure/clocked_video_out_timing.png -------------------------------------------------------------------------------- /figure/de1soc_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/figure/de1soc_linux.png -------------------------------------------------------------------------------- /figure/pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkoco/mi-lcd/HEAD/figure/pcb.png --------------------------------------------------------------------------------