├── .gitignore ├── D4D ├── _release_notes │ └── release_notes.txt ├── common_files │ ├── d4d_base.c │ ├── d4d_base.h │ ├── d4d_basic_draw.c │ ├── d4d_basic_draw.h │ ├── d4d_bmp.c │ ├── d4d_bmp.h │ ├── d4d_extsrc.c │ ├── d4d_extsrc.h │ ├── d4d_font.c │ ├── d4d_font.h │ ├── d4d_imgdec_bmp.c │ ├── d4d_imgdec_bmp.h │ ├── d4d_imgdec_d4d.c │ ├── d4d_imgdec_d4d.h │ ├── d4d_imgdec_d4dint.c │ ├── d4d_imgdec_d4dint.h │ ├── d4d_lldapi.h │ ├── d4d_low.c │ ├── d4d_low.h │ ├── d4d_math.c │ ├── d4d_math.h │ ├── d4d_mouse.c │ ├── d4d_mouse.h │ ├── d4d_object.c │ ├── d4d_object.h │ ├── d4d_private.h │ ├── d4d_scheme.c │ ├── d4d_scheme.h │ ├── d4d_screen.c │ ├── d4d_screen.h │ ├── d4d_string.c │ ├── d4d_string.h │ └── d4d_types.h ├── configuration_example │ ├── Readme.txt │ ├── d4d_screen_template.c.template │ └── d4d_user_cfg.h.Example ├── d4d.h ├── graphic_objects │ ├── d4d_button.c │ ├── d4d_button.h │ ├── d4d_check_box.c │ ├── d4d_check_box.h │ ├── d4d_combo_box.c │ ├── d4d_combo_box.h │ ├── d4d_console.c │ ├── d4d_console.h │ ├── d4d_edit_box.c │ ├── d4d_edit_box.h │ ├── d4d_gauge.c │ ├── d4d_gauge.h │ ├── d4d_graph.c │ ├── d4d_graph.h │ ├── d4d_group_box.c │ ├── d4d_group_box.h │ ├── d4d_icon.c │ ├── d4d_icon.h │ ├── d4d_label.c │ ├── d4d_label.h │ ├── d4d_list_box.c │ ├── d4d_list_box.h │ ├── d4d_menu.c │ ├── d4d_menu.h │ ├── d4d_picture.c │ ├── d4d_picture.h │ ├── d4d_progress_bar.c │ ├── d4d_progress_bar.h │ ├── d4d_radio_button.c │ ├── d4d_radio_button.h │ ├── d4d_scroll_bar.c │ ├── d4d_scroll_bar.h │ ├── d4d_slider.c │ ├── d4d_slider.h │ ├── d4d_text_box.c │ └── d4d_text_box.h └── low_level_drivers │ ├── LCD │ ├── lcd_controllers_drivers │ │ ├── frame_buffer │ │ │ ├── d4dlcd_frame_buffer.c │ │ │ ├── d4dlcd_frame_buffer.h │ │ │ └── d4dlcd_frame_buffer_cfg.h.example │ │ ├── fsa506 │ │ │ ├── d4dlcd_FSA506.c │ │ │ ├── d4dlcd_FSA506.h │ │ │ └── d4dlcd_FSA506_cfg.h.example │ │ ├── lgdp4531 │ │ │ ├── d4dlcd_lgdp4531.c │ │ │ ├── d4dlcd_lgdp4531.h │ │ │ └── d4dlcd_lgdp4531_cfg.h.example │ │ ├── ls020 │ │ │ ├── d4dlcd_LS020.c │ │ │ ├── d4dlcd_LS020.h │ │ │ └── d4dlcd_LS020_cfg.h.example │ │ ├── ssd1289 │ │ │ ├── d4dlcd_SSD1289.c │ │ │ ├── d4dlcd_SSD1289.h │ │ │ └── d4dlcd_SSD1289_cfg.h.example │ │ ├── ssd1926 │ │ │ ├── d4dlcd_ssd1926.c │ │ │ ├── d4dlcd_ssd1926.h │ │ │ └── d4dlcd_ssd1926_cfg.h.example │ │ └── template │ │ │ ├── d4dlcd_template.c │ │ │ ├── d4dlcd_template.h │ │ │ └── d4dlcd_template_cfg.h.example │ └── lcd_hw_interface │ │ ├── common_drivers │ │ ├── d4dlcdhw_common.c │ │ ├── d4dlcdhw_common.example.h │ │ └── d4dlcdhw_common.h │ │ ├── dragonfire_lcdc │ │ ├── d4dlcdhw_dragonfire_lcdc.c │ │ ├── d4dlcdhw_dragonfire_lcdc.h │ │ └── d4dlcdhw_dragonfire_lcdc_cfg.h.example │ │ ├── flexbus_16b │ │ ├── d4dlcdhw_flexbus_16b.c │ │ ├── d4dlcdhw_flexbus_16b.h │ │ ├── d4dlcdhw_flexbus_16b_cfg.h.example │ │ └── kinetis_d4dlcdhw_flexbus_16b_cfg.h.example │ │ ├── flexbus_8b │ │ ├── d4dlcdhw_flexbus_8b.c │ │ ├── d4dlcdhw_flexbus_8b.h │ │ └── d4dlcdhw_flexbus_8b_cfg.h.example │ │ ├── gpio_6800_8bit │ │ ├── d4dlcdhw_gpio6800_8b.c │ │ ├── d4dlcdhw_gpio6800_8b.h │ │ └── d4dlcdhw_gpio6800_8b_cfg.h.example │ │ ├── gpio_8080_16bit │ │ ├── d4dlcdhw_gpio8080_16b.c │ │ ├── d4dlcdhw_gpio8080_16b.h │ │ └── d4dlcdhw_gpio8080_16b_cfg.h.example │ │ ├── gpio_8080_8bit │ │ ├── d4dlcdhw_gpio8080_8b.c │ │ ├── d4dlcdhw_gpio8080_8b.h │ │ └── d4dlcdhw_gpio8080_8b_cfg.h.example │ │ ├── gpio_8080_byte_8bit │ │ ├── d4dlcdhw_gpio8080_byte_8b.c │ │ ├── d4dlcdhw_gpio8080_byte_8b.h │ │ └── d4dlcdhw_gpio8080_byte_8b_cfg.h.example │ │ ├── k70_lcdc │ │ ├── d4dlcdhw_k70_lcdc.c │ │ ├── d4dlcdhw_k70_lcdc.h │ │ ├── d4dlcdhw_k70_lcdc_cfg.h.example │ │ ├── sqm4_eb │ │ │ ├── d4dlcdhw_sqm4_eb.c │ │ │ └── d4dlcdhw_sqm4_eb.h │ │ ├── twr_rgb_rev_a │ │ │ ├── d4dlcdhw_twrrgba.c │ │ │ └── d4dlcdhw_twrrgba.h │ │ └── twr_rgb_rev_b │ │ │ ├── d4dlcdhw_twrrgbb.c │ │ │ └── d4dlcdhw_twrrgbb.h │ │ ├── kinetis_spi_bm │ │ ├── d4dlcdhw_kinetis_spi.c │ │ ├── d4dlcdhw_kinetis_spi.h │ │ └── d4dlcdhw_kinetis_spi_cfg.h.example │ │ ├── mqx_flexbus │ │ └── d4dlcdhw_mqx_fb.c │ │ ├── mqx_mpc5125_diu │ │ ├── d4dlcdhw_mqx_mpc5125_diu.c │ │ ├── d4dlcdhw_mqx_mpc5125_diu.h │ │ └── d4dlcdhw_mqx_mpc5125_diu_cfg.h.example │ │ ├── mqx_spi │ │ └── d4dlcdhw_mqx_spi.c │ │ ├── px_dcu_fb │ │ ├── d4dlcdhw_px_dcu_fb.c │ │ ├── d4dlcdhw_px_dcu_fb.h │ │ └── d4dlcdhw_px_dcu_fb_cfg.h.example │ │ ├── s12_spi_16b │ │ ├── d4dlcdhw_s12_spi_16b.c │ │ ├── d4dlcdhw_s12_spi_16b.h │ │ └── d4dlcdhw_s12_spi_16b_cfg.h.example │ │ ├── spi_16bit │ │ ├── d4dlcdhw_spi_16b.c │ │ ├── d4dlcdhw_spi_16b.example │ │ └── d4dlcdhw_spi_16b.h │ │ ├── spi_8bit │ │ ├── d4dlcdhw_spi_8b.c │ │ ├── d4dlcdhw_spi_8b.h │ │ └── d4dlcdhw_spi_8b_cfg.h.example │ │ ├── spi_sw_16bit │ │ ├── d4dlcdhw_swspi_16b.c │ │ ├── d4dlcdhw_swspi_16b.h │ │ └── d4dlcdhw_swspi_16b_cfg.h.example │ │ ├── spi_swc_8bit │ │ ├── d4dlcdhw_sp_swc_8b_cfg.h.example │ │ ├── d4dlcdhw_spi_swc_8b.c │ │ └── d4dlcdhw_spi_swc_8b.h │ │ ├── template │ │ ├── d4dlcdhw_template.c │ │ ├── d4dlcdhw_template.h │ │ └── d4dlcdhw_template_cfg.h.example │ │ └── template_fb │ │ ├── d4dlcdhw_template_fb.c │ │ ├── d4dlcdhw_template_fb.h │ │ └── d4dlcdhw_template_fb_cfg.h.example │ └── touch_screen │ ├── touch_screen_drivers │ ├── cr_touch │ │ ├── d4dtch_cr_touch.c │ │ ├── d4dtch_cr_touch.h │ │ ├── d4dtch_cr_touch_cfg.h.example │ │ ├── hw_iic_cfg.h │ │ ├── iic │ │ │ ├── hw_iic.c │ │ │ ├── hw_iic.h │ │ │ ├── hw_iic_cfg.h.example │ │ │ └── hw_iic_prv.h │ │ ├── iic_mqx │ │ │ ├── mqx_iic.c │ │ │ ├── mqx_iic.h │ │ │ └── mqx_iic_cfg.h.example │ │ └── mqx_iic_cfg.h │ ├── mcf52277_asp │ │ ├── d4dtch_mcf52277_asp.c │ │ ├── d4dtch_mcf52277_asp.h │ │ └── d4dtch_mcf52277_asp_cfg.h.example │ ├── resistive │ │ ├── d4dtch_resistive.c │ │ ├── d4dtch_resistive.h │ │ └── d4dtch_resistive_cfg.h.example │ ├── resistive_mqx │ │ ├── d4dtch_resistive_mqx.c │ │ └── d4dtch_resistive_mqx.h │ ├── template │ │ ├── d4dtch_template.c │ │ ├── d4dtch_template.h │ │ └── d4dtch_template_cfg.h.example │ └── tsc2046 │ │ ├── d4dtch_TSC2046.c │ │ └── d4dtch_TSC2046.h │ └── touch_screen_hw_interface │ ├── kinetis_adc_12b │ ├── d4dtchhw_kinetis_adc.c │ ├── d4dtchhw_kinetis_adc.h │ └── d4dtchhw_kinetis_adc_cfg.h.example │ ├── mcf52259_adc_12b │ ├── d4dtchhw_mcf52259_adc.c │ ├── d4dtchhw_mcf52259_adc.h │ └── d4dtchhw_mcf52259_adc_cfg.h.example │ ├── px_adc_10b │ ├── d4dtchhw_px_adc.c │ ├── d4dtchhw_px_adc.h │ └── d4dtchhw_px_adc_cfg.h.example │ ├── s08_adc_12b │ ├── d4dtchhw_s08_adc.c │ ├── d4dtchhw_s08_adc.h │ └── d4dtchhw_s08_adc_cfg.h.example │ ├── s12_adc_12b │ ├── d4dtchhw_s12_adc.c │ ├── d4dtchhw_s12_adc.h │ └── d4dtchhw_s12_adc_cfg.h.example │ └── template │ ├── d4dtchhw_template.c │ ├── d4dtchhw_template.h │ └── d4dtchhw_template_cfg.h.example ├── DOC ├── Converter.dox ├── _images │ ├── 01-new_driver_inCW.png │ ├── 02-no_editor_window.png │ ├── 03-open_driver_files.png │ ├── 04-rename_template.png │ ├── CW_FileList_D4D.png │ ├── Compounded_screen.png │ ├── D4D low level driver structure.svg │ ├── D4D low level driver structure_only.svg │ ├── D4D_low_level_driver_structure.png │ ├── Low_Level_File_structure.png │ ├── Standard_scren.png │ ├── button1.png │ ├── button2.png │ ├── check_box1.png │ ├── check_box2.png │ ├── console1.png │ ├── converter_bmp.png │ ├── converter_fnt.png │ ├── converter_str.png │ ├── eGUI_Example.png │ ├── eGUI_History.PNG │ ├── eGUI_Logo.png │ ├── edit_box1.PNG │ ├── fsl_logo.gif │ ├── gauge1.PNG │ ├── gauge2.PNG │ ├── gauge3.PNG │ ├── gauge4.PNG │ ├── graph1.PNG │ ├── group_box1.PNG │ ├── icon1.PNG │ ├── icon2.PNG │ ├── label1.PNG │ ├── label2.PNG │ ├── list_box1.PNG │ ├── memory_placement.PNG │ ├── memory_placement_RAM.PNG │ ├── menu1.PNG │ ├── menu2.PNG │ ├── picture1.PNG │ ├── progress_bar1.PNG │ ├── radio_button1.png │ ├── screen1.PNG │ ├── screen2.PNG │ ├── scroll_bar1.PNG │ ├── slider1.PNG │ ├── slider2.PNG │ └── text_box1.PNG ├── eGUI.css ├── eGUI.dox ├── eGUI_ft.html ├── eGUI_hd.html ├── eGUI_htm.ini ├── egui_description.dox ├── egui_new_lld.dox └── egui_style.xml ├── README.md ├── _Official_Demos ├── EGUI_D4D_Demo │ ├── TWRLCD_MCF51JM128 │ │ └── BareMetal │ │ │ └── CW_6_3 │ │ │ ├── CFV1_BDM_P&E_Multilink_CyclonePro.ini │ │ │ ├── Sources │ │ │ ├── D4D_Configuration │ │ │ │ ├── d4d_user_cfg.h │ │ │ │ ├── d4dlcd_SSD1289_cfg.h │ │ │ │ ├── d4dlcdhw_spi_8b_cfg.h │ │ │ │ ├── d4dtch_resistive_cfg.h │ │ │ │ └── d4dtchhw_s08_adc_cfg.h │ │ │ ├── derivative.h │ │ │ ├── exceptions.c │ │ │ ├── exceptions.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── startcf.c │ │ │ └── startcf.h │ │ │ ├── TWRLCD_MCF51JM128.mcp │ │ │ ├── cmd │ │ │ ├── CFV1_BDM_P&E_Multilink_CyclonePro_Postload.cmd │ │ │ ├── CFV1_BDM_P&E_Multilink_CyclonePro_Preload.cmd │ │ │ ├── CFV1_BDM_P&E_Multilink_CyclonePro_Reset.cmd │ │ │ └── CFV1_BDM_P&E_Multilink_CyclonePro_Startup.cmd │ │ │ └── prm │ │ │ └── Project.lcf │ ├── TWR_K60D100M │ │ ├── BareMetal │ │ │ └── IAR │ │ │ │ ├── .gitignore │ │ │ │ ├── egui_twrk60.ewp │ │ │ │ ├── egui_twrk60.eww │ │ │ │ └── src │ │ │ │ ├── 512KB_Pflash.icf │ │ │ │ ├── common │ │ │ │ ├── common.h │ │ │ │ ├── startup.c │ │ │ │ └── startup.h │ │ │ │ ├── cpu │ │ │ │ ├── arch_delay.h │ │ │ │ ├── arch_delay.s │ │ │ │ ├── arm_cm4.c │ │ │ │ ├── arm_cm4.h │ │ │ │ ├── crt0.s │ │ │ │ ├── dma_channels.h │ │ │ │ ├── dsp.h │ │ │ │ ├── dsp.s │ │ │ │ ├── headers │ │ │ │ │ ├── MK60N512VMD100.h │ │ │ │ │ └── regfile.h │ │ │ │ ├── start.c │ │ │ │ ├── start.h │ │ │ │ ├── vectors.c │ │ │ │ └── vectors.h │ │ │ │ ├── d4dlcdhw_flexbus_16b_cfg.h │ │ │ │ ├── d4dlcdhw_kinetis_spi_cfg.h │ │ │ │ ├── d4dtch_resistive_cfg.h │ │ │ │ ├── d4dtchhw_kinetis_adc_cfg.h │ │ │ │ ├── drivers │ │ │ │ ├── gpio │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── gpio.h │ │ │ │ ├── mcg │ │ │ │ │ ├── mcg.c │ │ │ │ │ └── mcg.h │ │ │ │ ├── pit │ │ │ │ │ ├── pit.c │ │ │ │ │ └── pit.h │ │ │ │ ├── sim │ │ │ │ │ ├── sim.c │ │ │ │ │ └── sim.h │ │ │ │ └── wdog │ │ │ │ │ ├── wdog.c │ │ │ │ │ └── wdog.h │ │ │ │ ├── iar.h │ │ │ │ ├── isr.h │ │ │ │ └── platforms │ │ │ │ └── k60_tower.h │ │ └── MQX │ │ │ └── IAR │ │ │ ├── egui_twrk60.ewp │ │ │ └── egui_twrk60.eww │ ├── _screen_shots │ │ ├── about_screen.bmp │ │ ├── about_screen_old.bmp │ │ ├── console_screen.bmp │ │ ├── console_screen_old.bmp │ │ ├── entry_screen.bmp │ │ ├── entry_screen_old.bmp │ │ ├── entry_screen_old2.bmp │ │ ├── main_screen.bmp │ │ ├── main_screen_old.bmp │ │ ├── main_screen_old2.bmp │ │ ├── menu_screen.bmp │ │ └── menu_screen_old.bmp │ ├── bm_demo │ │ ├── d4d_user_cfg.h │ │ ├── main.c │ │ └── main.h │ ├── common_source │ │ ├── d4d_screen_about.c │ │ ├── d4d_screen_entry.c │ │ ├── d4d_screen_log.c │ │ ├── d4d_screen_log.h │ │ ├── d4d_screen_main.c │ │ ├── d4d_screen_winmenu.c │ │ ├── d4d_user_cfg_app.h │ │ ├── fonts.c │ │ ├── fonts.h │ │ ├── pictures.c │ │ └── pictures.h │ ├── mqx_demo │ │ ├── d4d_user_cfg.h │ │ ├── main.c │ │ └── main.h │ └── readme.txt └── EGUI_Demo │ ├── SD_Card_Content │ ├── Examples │ │ ├── ALL_SYSTEM_CHARS.txt │ │ └── Gargy.bmp │ └── Fonts │ │ ├── Arial8.d4l │ │ └── CourierNew8.d4l │ ├── TWR_K70 │ └── IAR │ │ ├── D4D_Configuration │ │ ├── d4d_user_cfg.h │ │ ├── d4dlcd_frame_buffer_cfg.h │ │ ├── d4dlcdhw_k70_lcdc_cfg.h │ │ └── d4dtch_cr_touch_cfg.h │ │ ├── eGUI_Demo.ewp │ │ ├── eGUI_Demo.eww │ │ ├── eGUI_Demo_d4dLib.ewp │ │ ├── post_built.bat │ │ └── post_built_d.bat │ ├── _screen_shots │ ├── main_blue_text.BMP │ ├── main_grey.BMP │ ├── main_red_pict.BMP │ ├── open_file.BMP │ ├── screen_saver.BMP │ └── settings_blue.BMP │ ├── common_sources │ ├── ALL_SYSTEM_CHARS.txt │ ├── d4d_screen_main.c │ ├── d4d_screen_openfile.c │ ├── d4d_screen_openfile.h │ ├── d4d_screen_scrsvr.c │ ├── d4d_screen_settings.c │ ├── d4d_user_cfg_app.h │ ├── eGUI_string_table.d4d │ ├── file_list.c │ ├── file_list.h │ ├── fonts.c │ ├── fonts.h │ ├── hidkeyboard.c │ ├── hidkeyboard.h │ ├── hidmouse.c │ ├── hidmouse.h │ ├── logo.png │ ├── main.c │ ├── main.h │ ├── pictures.c │ ├── pictures.h │ ├── sd_card.c │ ├── strings.c │ ├── strings.h │ ├── usb_classes.c │ ├── usb_classes.h │ └── usbh_hid.c │ └── readme.txt ├── egui_license.txt ├── gpl_license.txt └── lgpl_license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /D4D/_release_notes/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/_release_notes/release_notes.txt -------------------------------------------------------------------------------- /D4D/common_files/d4d_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_base.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_base.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_basic_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_basic_draw.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_basic_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_basic_draw.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_bmp.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_bmp.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_extsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_extsrc.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_extsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_extsrc.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_font.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_font.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_imgdec_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_imgdec_bmp.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_imgdec_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_imgdec_bmp.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_imgdec_d4d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_imgdec_d4d.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_imgdec_d4d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_imgdec_d4d.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_imgdec_d4dint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_imgdec_d4dint.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_imgdec_d4dint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_imgdec_d4dint.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_lldapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_lldapi.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_low.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_low.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_math.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_math.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_mouse.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_mouse.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_object.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_object.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_private.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_scheme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_scheme.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_scheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_scheme.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_screen.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_screen.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_string.c -------------------------------------------------------------------------------- /D4D/common_files/d4d_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_string.h -------------------------------------------------------------------------------- /D4D/common_files/d4d_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/common_files/d4d_types.h -------------------------------------------------------------------------------- /D4D/configuration_example/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/configuration_example/Readme.txt -------------------------------------------------------------------------------- /D4D/configuration_example/d4d_screen_template.c.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/configuration_example/d4d_screen_template.c.template -------------------------------------------------------------------------------- /D4D/configuration_example/d4d_user_cfg.h.Example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/configuration_example/d4d_user_cfg.h.Example -------------------------------------------------------------------------------- /D4D/d4d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/d4d.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_button.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_button.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_check_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_check_box.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_check_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_check_box.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_combo_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_combo_box.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_combo_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_combo_box.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_console.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_console.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_edit_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_edit_box.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_edit_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_edit_box.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_gauge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_gauge.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_gauge.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_graph.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_graph.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_group_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_group_box.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_group_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_group_box.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_icon.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_icon.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_label.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_label.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_list_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_list_box.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_list_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_list_box.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_menu.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_menu.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_picture.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_picture.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_progress_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_progress_bar.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_progress_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_progress_bar.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_radio_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_radio_button.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_radio_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_radio_button.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_scroll_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_scroll_bar.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_scroll_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_scroll_bar.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_slider.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_slider.h -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_text_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_text_box.c -------------------------------------------------------------------------------- /D4D/graphic_objects/d4d_text_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/graphic_objects/d4d_text_box.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/frame_buffer/d4dlcd_frame_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/frame_buffer/d4dlcd_frame_buffer.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/frame_buffer/d4dlcd_frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/frame_buffer/d4dlcd_frame_buffer.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/frame_buffer/d4dlcd_frame_buffer_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/frame_buffer/d4dlcd_frame_buffer_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/fsa506/d4dlcd_FSA506.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/fsa506/d4dlcd_FSA506.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/fsa506/d4dlcd_FSA506.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/fsa506/d4dlcd_FSA506.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/fsa506/d4dlcd_FSA506_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/fsa506/d4dlcd_FSA506_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/lgdp4531/d4dlcd_lgdp4531.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/lgdp4531/d4dlcd_lgdp4531.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/lgdp4531/d4dlcd_lgdp4531.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/lgdp4531/d4dlcd_lgdp4531.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/lgdp4531/d4dlcd_lgdp4531_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/lgdp4531/d4dlcd_lgdp4531_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/ls020/d4dlcd_LS020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/ls020/d4dlcd_LS020.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/ls020/d4dlcd_LS020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/ls020/d4dlcd_LS020.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/ls020/d4dlcd_LS020_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/ls020/d4dlcd_LS020_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1289/d4dlcd_SSD1289.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1289/d4dlcd_SSD1289.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1289/d4dlcd_SSD1289.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1289/d4dlcd_SSD1289.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1289/d4dlcd_SSD1289_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1289/d4dlcd_SSD1289_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1926/d4dlcd_ssd1926.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1926/d4dlcd_ssd1926.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1926/d4dlcd_ssd1926.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1926/d4dlcd_ssd1926.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1926/d4dlcd_ssd1926_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/ssd1926/d4dlcd_ssd1926_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/template/d4dlcd_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/template/d4dlcd_template.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/template/d4dlcd_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/template/d4dlcd_template.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_controllers_drivers/template/d4dlcd_template_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_controllers_drivers/template/d4dlcd_template_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/common_drivers/d4dlcdhw_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/common_drivers/d4dlcdhw_common.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/common_drivers/d4dlcdhw_common.example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/common_drivers/d4dlcdhw_common.example.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/common_drivers/d4dlcdhw_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/common_drivers/d4dlcdhw_common.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/dragonfire_lcdc/d4dlcdhw_dragonfire_lcdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/dragonfire_lcdc/d4dlcdhw_dragonfire_lcdc.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/dragonfire_lcdc/d4dlcdhw_dragonfire_lcdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/dragonfire_lcdc/d4dlcdhw_dragonfire_lcdc.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/dragonfire_lcdc/d4dlcdhw_dragonfire_lcdc_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/dragonfire_lcdc/d4dlcdhw_dragonfire_lcdc_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_16b/d4dlcdhw_flexbus_16b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_16b/d4dlcdhw_flexbus_16b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_16b/d4dlcdhw_flexbus_16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_16b/d4dlcdhw_flexbus_16b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_16b/d4dlcdhw_flexbus_16b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_16b/d4dlcdhw_flexbus_16b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_16b/kinetis_d4dlcdhw_flexbus_16b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_16b/kinetis_d4dlcdhw_flexbus_16b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_8b/d4dlcdhw_flexbus_8b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_8b/d4dlcdhw_flexbus_8b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_8b/d4dlcdhw_flexbus_8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_8b/d4dlcdhw_flexbus_8b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_8b/d4dlcdhw_flexbus_8b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/flexbus_8b/d4dlcdhw_flexbus_8b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_6800_8bit/d4dlcdhw_gpio6800_8b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_6800_8bit/d4dlcdhw_gpio6800_8b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_6800_8bit/d4dlcdhw_gpio6800_8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_6800_8bit/d4dlcdhw_gpio6800_8b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_6800_8bit/d4dlcdhw_gpio6800_8b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_6800_8bit/d4dlcdhw_gpio6800_8b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_16bit/d4dlcdhw_gpio8080_16b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_16bit/d4dlcdhw_gpio8080_16b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_16bit/d4dlcdhw_gpio8080_16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_16bit/d4dlcdhw_gpio8080_16b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_16bit/d4dlcdhw_gpio8080_16b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_16bit/d4dlcdhw_gpio8080_16b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_8bit/d4dlcdhw_gpio8080_8b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_8bit/d4dlcdhw_gpio8080_8b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_8bit/d4dlcdhw_gpio8080_8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_8bit/d4dlcdhw_gpio8080_8b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_8bit/d4dlcdhw_gpio8080_8b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_8bit/d4dlcdhw_gpio8080_8b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_byte_8bit/d4dlcdhw_gpio8080_byte_8b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_byte_8bit/d4dlcdhw_gpio8080_byte_8b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_byte_8bit/d4dlcdhw_gpio8080_byte_8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_byte_8bit/d4dlcdhw_gpio8080_byte_8b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_byte_8bit/d4dlcdhw_gpio8080_byte_8b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/gpio_8080_byte_8bit/d4dlcdhw_gpio8080_byte_8b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/d4dlcdhw_k70_lcdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/d4dlcdhw_k70_lcdc.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/d4dlcdhw_k70_lcdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/d4dlcdhw_k70_lcdc.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/d4dlcdhw_k70_lcdc_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/d4dlcdhw_k70_lcdc_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/sqm4_eb/d4dlcdhw_sqm4_eb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/sqm4_eb/d4dlcdhw_sqm4_eb.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/sqm4_eb/d4dlcdhw_sqm4_eb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/sqm4_eb/d4dlcdhw_sqm4_eb.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/twr_rgb_rev_a/d4dlcdhw_twrrgba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/twr_rgb_rev_a/d4dlcdhw_twrrgba.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/twr_rgb_rev_a/d4dlcdhw_twrrgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/twr_rgb_rev_a/d4dlcdhw_twrrgba.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/twr_rgb_rev_b/d4dlcdhw_twrrgbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/twr_rgb_rev_b/d4dlcdhw_twrrgbb.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/twr_rgb_rev_b/d4dlcdhw_twrrgbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/k70_lcdc/twr_rgb_rev_b/d4dlcdhw_twrrgbb.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/kinetis_spi_bm/d4dlcdhw_kinetis_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/kinetis_spi_bm/d4dlcdhw_kinetis_spi.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/kinetis_spi_bm/d4dlcdhw_kinetis_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/kinetis_spi_bm/d4dlcdhw_kinetis_spi.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/kinetis_spi_bm/d4dlcdhw_kinetis_spi_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/kinetis_spi_bm/d4dlcdhw_kinetis_spi_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_flexbus/d4dlcdhw_mqx_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_flexbus/d4dlcdhw_mqx_fb.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_mpc5125_diu/d4dlcdhw_mqx_mpc5125_diu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_mpc5125_diu/d4dlcdhw_mqx_mpc5125_diu.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_mpc5125_diu/d4dlcdhw_mqx_mpc5125_diu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_mpc5125_diu/d4dlcdhw_mqx_mpc5125_diu.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_mpc5125_diu/d4dlcdhw_mqx_mpc5125_diu_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_mpc5125_diu/d4dlcdhw_mqx_mpc5125_diu_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_spi/d4dlcdhw_mqx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/mqx_spi/d4dlcdhw_mqx_spi.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/px_dcu_fb/d4dlcdhw_px_dcu_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/px_dcu_fb/d4dlcdhw_px_dcu_fb.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/px_dcu_fb/d4dlcdhw_px_dcu_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/px_dcu_fb/d4dlcdhw_px_dcu_fb.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/px_dcu_fb/d4dlcdhw_px_dcu_fb_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/px_dcu_fb/d4dlcdhw_px_dcu_fb_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/s12_spi_16b/d4dlcdhw_s12_spi_16b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/s12_spi_16b/d4dlcdhw_s12_spi_16b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/s12_spi_16b/d4dlcdhw_s12_spi_16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/s12_spi_16b/d4dlcdhw_s12_spi_16b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/s12_spi_16b/d4dlcdhw_s12_spi_16b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/s12_spi_16b/d4dlcdhw_s12_spi_16b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_16bit/d4dlcdhw_spi_16b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_16bit/d4dlcdhw_spi_16b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_16bit/d4dlcdhw_spi_16b.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_16bit/d4dlcdhw_spi_16b.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_16bit/d4dlcdhw_spi_16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_16bit/d4dlcdhw_spi_16b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_8bit/d4dlcdhw_spi_8b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_8bit/d4dlcdhw_spi_8b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_8bit/d4dlcdhw_spi_8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_8bit/d4dlcdhw_spi_8b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_8bit/d4dlcdhw_spi_8b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_8bit/d4dlcdhw_spi_8b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_sw_16bit/d4dlcdhw_swspi_16b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_sw_16bit/d4dlcdhw_swspi_16b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_sw_16bit/d4dlcdhw_swspi_16b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_sw_16bit/d4dlcdhw_swspi_16b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_sw_16bit/d4dlcdhw_swspi_16b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_sw_16bit/d4dlcdhw_swspi_16b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_swc_8bit/d4dlcdhw_sp_swc_8b_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_swc_8bit/d4dlcdhw_sp_swc_8b_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_swc_8bit/d4dlcdhw_spi_swc_8b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_swc_8bit/d4dlcdhw_spi_swc_8b.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/spi_swc_8bit/d4dlcdhw_spi_swc_8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/spi_swc_8bit/d4dlcdhw_spi_swc_8b.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/template/d4dlcdhw_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/template/d4dlcdhw_template.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/template/d4dlcdhw_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/template/d4dlcdhw_template.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/template/d4dlcdhw_template_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/template/d4dlcdhw_template_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/template_fb/d4dlcdhw_template_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/template_fb/d4dlcdhw_template_fb.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/template_fb/d4dlcdhw_template_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/template_fb/d4dlcdhw_template_fb.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/LCD/lcd_hw_interface/template_fb/d4dlcdhw_template_fb_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/LCD/lcd_hw_interface/template_fb/d4dlcdhw_template_fb_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/d4dtch_cr_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/d4dtch_cr_touch.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/d4dtch_cr_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/d4dtch_cr_touch.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/d4dtch_cr_touch_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/d4dtch_cr_touch_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/hw_iic_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/hw_iic_cfg.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic/hw_iic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic/hw_iic.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic/hw_iic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic/hw_iic.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic/hw_iic_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic/hw_iic_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic/hw_iic_prv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic/hw_iic_prv.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic_mqx/mqx_iic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic_mqx/mqx_iic.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic_mqx/mqx_iic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic_mqx/mqx_iic.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic_mqx/mqx_iic_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/iic_mqx/mqx_iic_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/mqx_iic_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/cr_touch/mqx_iic_cfg.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/mcf52277_asp/d4dtch_mcf52277_asp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/mcf52277_asp/d4dtch_mcf52277_asp.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/mcf52277_asp/d4dtch_mcf52277_asp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/mcf52277_asp/d4dtch_mcf52277_asp.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/mcf52277_asp/d4dtch_mcf52277_asp_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/mcf52277_asp/d4dtch_mcf52277_asp_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive/d4dtch_resistive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive/d4dtch_resistive.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive/d4dtch_resistive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive/d4dtch_resistive.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive/d4dtch_resistive_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive/d4dtch_resistive_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive_mqx/d4dtch_resistive_mqx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive_mqx/d4dtch_resistive_mqx.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive_mqx/d4dtch_resistive_mqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/resistive_mqx/d4dtch_resistive_mqx.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/template/d4dtch_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/template/d4dtch_template.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/template/d4dtch_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/template/d4dtch_template.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/template/d4dtch_template_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/template/d4dtch_template_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/tsc2046/d4dtch_TSC2046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/tsc2046/d4dtch_TSC2046.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_drivers/tsc2046/d4dtch_TSC2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_drivers/tsc2046/d4dtch_TSC2046.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/kinetis_adc_12b/d4dtchhw_kinetis_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/kinetis_adc_12b/d4dtchhw_kinetis_adc.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/kinetis_adc_12b/d4dtchhw_kinetis_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/kinetis_adc_12b/d4dtchhw_kinetis_adc.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/kinetis_adc_12b/d4dtchhw_kinetis_adc_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/kinetis_adc_12b/d4dtchhw_kinetis_adc_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/mcf52259_adc_12b/d4dtchhw_mcf52259_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/mcf52259_adc_12b/d4dtchhw_mcf52259_adc.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/mcf52259_adc_12b/d4dtchhw_mcf52259_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/mcf52259_adc_12b/d4dtchhw_mcf52259_adc.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/mcf52259_adc_12b/d4dtchhw_mcf52259_adc_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/mcf52259_adc_12b/d4dtchhw_mcf52259_adc_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/px_adc_10b/d4dtchhw_px_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/px_adc_10b/d4dtchhw_px_adc.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/px_adc_10b/d4dtchhw_px_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/px_adc_10b/d4dtchhw_px_adc.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/px_adc_10b/d4dtchhw_px_adc_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/px_adc_10b/d4dtchhw_px_adc_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s08_adc_12b/d4dtchhw_s08_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s08_adc_12b/d4dtchhw_s08_adc.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s08_adc_12b/d4dtchhw_s08_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s08_adc_12b/d4dtchhw_s08_adc.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s08_adc_12b/d4dtchhw_s08_adc_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s08_adc_12b/d4dtchhw_s08_adc_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s12_adc_12b/d4dtchhw_s12_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s12_adc_12b/d4dtchhw_s12_adc.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s12_adc_12b/d4dtchhw_s12_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s12_adc_12b/d4dtchhw_s12_adc.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s12_adc_12b/d4dtchhw_s12_adc_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/s12_adc_12b/d4dtchhw_s12_adc_cfg.h.example -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/template/d4dtchhw_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/template/d4dtchhw_template.c -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/template/d4dtchhw_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/template/d4dtchhw_template.h -------------------------------------------------------------------------------- /D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/template/d4dtchhw_template_cfg.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/D4D/low_level_drivers/touch_screen/touch_screen_hw_interface/template/d4dtchhw_template_cfg.h.example -------------------------------------------------------------------------------- /DOC/Converter.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/Converter.dox -------------------------------------------------------------------------------- /DOC/_images/01-new_driver_inCW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/01-new_driver_inCW.png -------------------------------------------------------------------------------- /DOC/_images/02-no_editor_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/02-no_editor_window.png -------------------------------------------------------------------------------- /DOC/_images/03-open_driver_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/03-open_driver_files.png -------------------------------------------------------------------------------- /DOC/_images/04-rename_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/04-rename_template.png -------------------------------------------------------------------------------- /DOC/_images/CW_FileList_D4D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/CW_FileList_D4D.png -------------------------------------------------------------------------------- /DOC/_images/Compounded_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/Compounded_screen.png -------------------------------------------------------------------------------- /DOC/_images/D4D low level driver structure.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DOC/_images/D4D low level driver structure_only.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DOC/_images/D4D_low_level_driver_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/D4D_low_level_driver_structure.png -------------------------------------------------------------------------------- /DOC/_images/Low_Level_File_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/Low_Level_File_structure.png -------------------------------------------------------------------------------- /DOC/_images/Standard_scren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/Standard_scren.png -------------------------------------------------------------------------------- /DOC/_images/button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/button1.png -------------------------------------------------------------------------------- /DOC/_images/button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/button2.png -------------------------------------------------------------------------------- /DOC/_images/check_box1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/check_box1.png -------------------------------------------------------------------------------- /DOC/_images/check_box2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/check_box2.png -------------------------------------------------------------------------------- /DOC/_images/console1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/console1.png -------------------------------------------------------------------------------- /DOC/_images/converter_bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/converter_bmp.png -------------------------------------------------------------------------------- /DOC/_images/converter_fnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/converter_fnt.png -------------------------------------------------------------------------------- /DOC/_images/converter_str.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/converter_str.png -------------------------------------------------------------------------------- /DOC/_images/eGUI_Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/eGUI_Example.png -------------------------------------------------------------------------------- /DOC/_images/eGUI_History.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/eGUI_History.PNG -------------------------------------------------------------------------------- /DOC/_images/eGUI_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/eGUI_Logo.png -------------------------------------------------------------------------------- /DOC/_images/edit_box1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/edit_box1.PNG -------------------------------------------------------------------------------- /DOC/_images/fsl_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/fsl_logo.gif -------------------------------------------------------------------------------- /DOC/_images/gauge1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/gauge1.PNG -------------------------------------------------------------------------------- /DOC/_images/gauge2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/gauge2.PNG -------------------------------------------------------------------------------- /DOC/_images/gauge3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/gauge3.PNG -------------------------------------------------------------------------------- /DOC/_images/gauge4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/gauge4.PNG -------------------------------------------------------------------------------- /DOC/_images/graph1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/graph1.PNG -------------------------------------------------------------------------------- /DOC/_images/group_box1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/group_box1.PNG -------------------------------------------------------------------------------- /DOC/_images/icon1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/icon1.PNG -------------------------------------------------------------------------------- /DOC/_images/icon2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/icon2.PNG -------------------------------------------------------------------------------- /DOC/_images/label1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/label1.PNG -------------------------------------------------------------------------------- /DOC/_images/label2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/label2.PNG -------------------------------------------------------------------------------- /DOC/_images/list_box1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/list_box1.PNG -------------------------------------------------------------------------------- /DOC/_images/memory_placement.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/memory_placement.PNG -------------------------------------------------------------------------------- /DOC/_images/memory_placement_RAM.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/memory_placement_RAM.PNG -------------------------------------------------------------------------------- /DOC/_images/menu1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/menu1.PNG -------------------------------------------------------------------------------- /DOC/_images/menu2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/menu2.PNG -------------------------------------------------------------------------------- /DOC/_images/picture1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/picture1.PNG -------------------------------------------------------------------------------- /DOC/_images/progress_bar1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/progress_bar1.PNG -------------------------------------------------------------------------------- /DOC/_images/radio_button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/radio_button1.png -------------------------------------------------------------------------------- /DOC/_images/screen1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/screen1.PNG -------------------------------------------------------------------------------- /DOC/_images/screen2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/screen2.PNG -------------------------------------------------------------------------------- /DOC/_images/scroll_bar1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/scroll_bar1.PNG -------------------------------------------------------------------------------- /DOC/_images/slider1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/slider1.PNG -------------------------------------------------------------------------------- /DOC/_images/slider2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/slider2.PNG -------------------------------------------------------------------------------- /DOC/_images/text_box1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/_images/text_box1.PNG -------------------------------------------------------------------------------- /DOC/eGUI.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/eGUI.css -------------------------------------------------------------------------------- /DOC/eGUI.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/eGUI.dox -------------------------------------------------------------------------------- /DOC/eGUI_ft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/eGUI_ft.html -------------------------------------------------------------------------------- /DOC/eGUI_hd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/eGUI_hd.html -------------------------------------------------------------------------------- /DOC/eGUI_htm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/eGUI_htm.ini -------------------------------------------------------------------------------- /DOC/egui_description.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/egui_description.dox -------------------------------------------------------------------------------- /DOC/egui_new_lld.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/egui_new_lld.dox -------------------------------------------------------------------------------- /DOC/egui_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/DOC/egui_style.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/README.md -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/CFV1_BDM_P&E_Multilink_CyclonePro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/CFV1_BDM_P&E_Multilink_CyclonePro.ini -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4d_user_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4d_user_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4dlcd_SSD1289_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4dlcd_SSD1289_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4dlcdhw_spi_8b_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4dlcdhw_spi_8b_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4dtch_resistive_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4dtch_resistive_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4dtchhw_s08_adc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/D4D_Configuration/d4dtchhw_s08_adc_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/derivative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/derivative.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/exceptions.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/exceptions.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/main.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/main.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/startcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/startcf.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/startcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/Sources/startcf.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/TWRLCD_MCF51JM128.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/TWRLCD_MCF51JM128.mcp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/cmd/CFV1_BDM_P&E_Multilink_CyclonePro_Postload.cmd: -------------------------------------------------------------------------------- 1 | // After load the commands written below will be executed 2 | -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/cmd/CFV1_BDM_P&E_Multilink_CyclonePro_Preload.cmd: -------------------------------------------------------------------------------- 1 | // Before load the commands written below will be executed 2 | -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/cmd/CFV1_BDM_P&E_Multilink_CyclonePro_Reset.cmd: -------------------------------------------------------------------------------- 1 | // After reset the commands written below will be executed 2 | -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/cmd/CFV1_BDM_P&E_Multilink_CyclonePro_Startup.cmd: -------------------------------------------------------------------------------- 1 | // At startup the commands written below will be executed 2 | -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/prm/Project.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWRLCD_MCF51JM128/BareMetal/CW_6_3/prm/Project.lcf -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/.gitignore: -------------------------------------------------------------------------------- 1 | settings/ 2 | debug/ 3 | release/ -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/egui_twrk60.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/egui_twrk60.ewp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/egui_twrk60.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/egui_twrk60.eww -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/512KB_Pflash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/512KB_Pflash.icf -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/common/common.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/common/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/common/startup.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/common/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/common/startup.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/arch_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/arch_delay.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/arch_delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/arch_delay.s -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/arm_cm4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/arm_cm4.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/arm_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/arm_cm4.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/crt0.s -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/dma_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/dma_channels.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/dsp.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/dsp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/dsp.s -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/headers/MK60N512VMD100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/headers/MK60N512VMD100.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/headers/regfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/headers/regfile.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/start.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/start.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/vectors.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/cpu/vectors.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/d4dlcdhw_flexbus_16b_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/d4dlcdhw_flexbus_16b_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/d4dlcdhw_kinetis_spi_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/d4dlcdhw_kinetis_spi_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/d4dtch_resistive_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/d4dtch_resistive_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/d4dtchhw_kinetis_adc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/d4dtchhw_kinetis_adc_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/gpio/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/gpio/gpio.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/gpio/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/gpio/gpio.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/mcg/mcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/mcg/mcg.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/mcg/mcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/mcg/mcg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/pit/pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/pit/pit.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/pit/pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/pit/pit.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/sim/sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/sim/sim.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/sim/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/sim/sim.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/wdog/wdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/wdog/wdog.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/wdog/wdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/drivers/wdog/wdog.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/iar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/iar.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/isr.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/platforms/k60_tower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/BareMetal/IAR/src/platforms/k60_tower.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/MQX/IAR/egui_twrk60.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/MQX/IAR/egui_twrk60.ewp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/MQX/IAR/egui_twrk60.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/TWR_K60D100M/MQX/IAR/egui_twrk60.eww -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/about_screen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/about_screen.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/about_screen_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/about_screen_old.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/console_screen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/console_screen.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/console_screen_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/console_screen_old.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/entry_screen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/entry_screen.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/entry_screen_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/entry_screen_old.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/entry_screen_old2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/entry_screen_old2.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/main_screen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/main_screen.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/main_screen_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/main_screen_old.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/main_screen_old2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/main_screen_old2.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/menu_screen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/menu_screen.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/_screen_shots/menu_screen_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/_screen_shots/menu_screen_old.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/bm_demo/d4d_user_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/bm_demo/d4d_user_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/bm_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/bm_demo/main.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/bm_demo/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/bm_demo/main.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_about.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_entry.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_log.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_log.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_main.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_winmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/d4d_screen_winmenu.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/d4d_user_cfg_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/d4d_user_cfg_app.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/fonts.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/fonts.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/pictures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/pictures.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/common_source/pictures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/common_source/pictures.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/mqx_demo/d4d_user_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/mqx_demo/d4d_user_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/mqx_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/mqx_demo/main.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/mqx_demo/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/mqx_demo/main.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_D4D_Demo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_D4D_Demo/readme.txt -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/SD_Card_Content/Examples/ALL_SYSTEM_CHARS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/SD_Card_Content/Examples/ALL_SYSTEM_CHARS.txt -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/SD_Card_Content/Examples/Gargy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/SD_Card_Content/Examples/Gargy.bmp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/SD_Card_Content/Fonts/Arial8.d4l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/SD_Card_Content/Fonts/Arial8.d4l -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/SD_Card_Content/Fonts/CourierNew8.d4l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/SD_Card_Content/Fonts/CourierNew8.d4l -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/TWR_K70/IAR/D4D_Configuration/d4d_user_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/TWR_K70/IAR/D4D_Configuration/d4d_user_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/TWR_K70/IAR/D4D_Configuration/d4dlcd_frame_buffer_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/TWR_K70/IAR/D4D_Configuration/d4dlcd_frame_buffer_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/TWR_K70/IAR/D4D_Configuration/d4dlcdhw_k70_lcdc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/TWR_K70/IAR/D4D_Configuration/d4dlcdhw_k70_lcdc_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/TWR_K70/IAR/D4D_Configuration/d4dtch_cr_touch_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/TWR_K70/IAR/D4D_Configuration/d4dtch_cr_touch_cfg.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/TWR_K70/IAR/eGUI_Demo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/TWR_K70/IAR/eGUI_Demo.ewp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/TWR_K70/IAR/eGUI_Demo.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/TWR_K70/IAR/eGUI_Demo.eww -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/TWR_K70/IAR/eGUI_Demo_d4dLib.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/TWR_K70/IAR/eGUI_Demo_d4dLib.ewp -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/TWR_K70/IAR/post_built.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/TWR_K70/IAR/post_built.bat -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/TWR_K70/IAR/post_built_d.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/TWR_K70/IAR/post_built_d.bat -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/_screen_shots/main_blue_text.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/_screen_shots/main_blue_text.BMP -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/_screen_shots/main_grey.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/_screen_shots/main_grey.BMP -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/_screen_shots/main_red_pict.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/_screen_shots/main_red_pict.BMP -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/_screen_shots/open_file.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/_screen_shots/open_file.BMP -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/_screen_shots/screen_saver.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/_screen_shots/screen_saver.BMP -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/_screen_shots/settings_blue.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/_screen_shots/settings_blue.BMP -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/ALL_SYSTEM_CHARS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/ALL_SYSTEM_CHARS.txt -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/d4d_screen_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/d4d_screen_main.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/d4d_screen_openfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/d4d_screen_openfile.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/d4d_screen_openfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/d4d_screen_openfile.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/d4d_screen_scrsvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/d4d_screen_scrsvr.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/d4d_screen_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/d4d_screen_settings.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/d4d_user_cfg_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/d4d_user_cfg_app.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/eGUI_string_table.d4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/eGUI_string_table.d4d -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/file_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/file_list.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/file_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/file_list.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/fonts.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/fonts.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/hidkeyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/hidkeyboard.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/hidkeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/hidkeyboard.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/hidmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/hidmouse.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/hidmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/hidmouse.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/logo.png -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/main.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/main.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/pictures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/pictures.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/pictures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/pictures.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/sd_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/sd_card.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/strings.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/strings.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/usb_classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/usb_classes.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/usb_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/usb_classes.h -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/common_sources/usbh_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/common_sources/usbh_hid.c -------------------------------------------------------------------------------- /_Official_Demos/EGUI_Demo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/_Official_Demos/EGUI_Demo/readme.txt -------------------------------------------------------------------------------- /egui_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/egui_license.txt -------------------------------------------------------------------------------- /gpl_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/gpl_license.txt -------------------------------------------------------------------------------- /lgpl_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/eGUI/HEAD/lgpl_license.txt --------------------------------------------------------------------------------