├── .cproject ├── .cproject_org ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── auto-comment.yml ├── stale.yml └── workflows │ └── stm32_port.yml ├── .gitignore ├── .gitmodules ├── .project ├── .project_org ├── .settings └── language.settings.xml ├── .vscode ├── STM32F746.svd ├── launch.json └── settings.json ├── CMSIS ├── core │ ├── arm_common_tables.h │ ├── arm_const_structs.h │ ├── arm_math.h │ ├── cmsis_armcc.h │ ├── cmsis_armcc_V6.h │ ├── cmsis_gcc.h │ ├── core_cm0.h │ ├── core_cm0plus.h │ ├── core_cm3.h │ ├── core_cm4.h │ ├── core_cm7.h │ ├── core_cmFunc.h │ ├── core_cmInstr.h │ ├── core_cmSimd.h │ ├── core_sc000.h │ └── core_sc300.h └── device │ ├── stm32f722xx.h │ ├── stm32f723xx.h │ ├── stm32f732xx.h │ ├── stm32f733xx.h │ ├── stm32f745xx.h │ ├── stm32f746xx.h │ ├── stm32f756xx.h │ ├── stm32f765xx.h │ ├── stm32f767xx.h │ ├── stm32f769xx.h │ ├── stm32f777xx.h │ ├── stm32f779xx.h │ ├── stm32f7xx.h │ └── system_stm32f7xx.h ├── CMakeLists.txt ├── Debug └── .gitignore ├── HAL_Driver ├── Inc │ ├── Legacy │ │ ├── stm32_hal_legacy.h │ │ └── stm32f7xx_hal_can_legacy.h │ ├── stm32_assert_template.h │ ├── stm32f7xx_hal.h │ ├── stm32f7xx_hal_adc.h │ ├── stm32f7xx_hal_adc_ex.h │ ├── stm32f7xx_hal_can.h │ ├── stm32f7xx_hal_cec.h │ ├── stm32f7xx_hal_conf.h │ ├── stm32f7xx_hal_conf_template.h │ ├── stm32f7xx_hal_cortex.h │ ├── stm32f7xx_hal_crc.h │ ├── stm32f7xx_hal_crc_ex.h │ ├── stm32f7xx_hal_cryp.h │ ├── stm32f7xx_hal_cryp_ex.h │ ├── stm32f7xx_hal_dac.h │ ├── stm32f7xx_hal_dac_ex.h │ ├── stm32f7xx_hal_dcmi.h │ ├── stm32f7xx_hal_dcmi_ex.h │ ├── stm32f7xx_hal_def.h │ ├── stm32f7xx_hal_dfsdm.h │ ├── stm32f7xx_hal_dma.h │ ├── stm32f7xx_hal_dma2d.h │ ├── stm32f7xx_hal_dma_ex.h │ ├── stm32f7xx_hal_dsi.h │ ├── stm32f7xx_hal_eth.h │ ├── stm32f7xx_hal_flash.h │ ├── stm32f7xx_hal_flash_ex.h │ ├── stm32f7xx_hal_gpio.h │ ├── stm32f7xx_hal_gpio_ex.h │ ├── stm32f7xx_hal_hash.h │ ├── stm32f7xx_hal_hash_ex.h │ ├── stm32f7xx_hal_hcd.h │ ├── stm32f7xx_hal_i2c.h │ ├── stm32f7xx_hal_i2c_ex.h │ ├── stm32f7xx_hal_i2s.h │ ├── stm32f7xx_hal_irda.h │ ├── stm32f7xx_hal_irda_ex.h │ ├── stm32f7xx_hal_iwdg.h │ ├── stm32f7xx_hal_jpeg.h │ ├── stm32f7xx_hal_lptim.h │ ├── stm32f7xx_hal_ltdc.h │ ├── stm32f7xx_hal_ltdc_ex.h │ ├── stm32f7xx_hal_mdios.h │ ├── stm32f7xx_hal_mmc.h │ ├── stm32f7xx_hal_nand.h │ ├── stm32f7xx_hal_nor.h │ ├── stm32f7xx_hal_pcd.h │ ├── stm32f7xx_hal_pcd_ex.h │ ├── stm32f7xx_hal_pwr.h │ ├── stm32f7xx_hal_pwr_ex.h │ ├── stm32f7xx_hal_qspi.h │ ├── stm32f7xx_hal_rcc.h │ ├── stm32f7xx_hal_rcc_ex.h │ ├── stm32f7xx_hal_rng.h │ ├── stm32f7xx_hal_rtc.h │ ├── stm32f7xx_hal_rtc_ex.h │ ├── stm32f7xx_hal_sai.h │ ├── stm32f7xx_hal_sai_ex.h │ ├── stm32f7xx_hal_sd.h │ ├── stm32f7xx_hal_sdram.h │ ├── stm32f7xx_hal_smartcard.h │ ├── stm32f7xx_hal_smartcard_ex.h │ ├── stm32f7xx_hal_smbus.h │ ├── stm32f7xx_hal_spdifrx.h │ ├── stm32f7xx_hal_spi.h │ ├── stm32f7xx_hal_sram.h │ ├── stm32f7xx_hal_tim.h │ ├── stm32f7xx_hal_tim_ex.h │ ├── stm32f7xx_hal_uart.h │ ├── stm32f7xx_hal_uart_ex.h │ ├── stm32f7xx_hal_usart.h │ ├── stm32f7xx_hal_usart_ex.h │ ├── stm32f7xx_hal_wwdg.h │ ├── stm32f7xx_ll_adc.h │ ├── stm32f7xx_ll_bus.h │ ├── stm32f7xx_ll_cortex.h │ ├── stm32f7xx_ll_crc.h │ ├── stm32f7xx_ll_dac.h │ ├── stm32f7xx_ll_dma.h │ ├── stm32f7xx_ll_dma2d.h │ ├── stm32f7xx_ll_exti.h │ ├── stm32f7xx_ll_fmc.h │ ├── stm32f7xx_ll_gpio.h │ ├── stm32f7xx_ll_i2c.h │ ├── stm32f7xx_ll_iwdg.h │ ├── stm32f7xx_ll_lptim.h │ ├── stm32f7xx_ll_pwr.h │ ├── stm32f7xx_ll_rcc.h │ ├── stm32f7xx_ll_rng.h │ ├── stm32f7xx_ll_rtc.h │ ├── stm32f7xx_ll_sdmmc.h │ ├── stm32f7xx_ll_spi.h │ ├── stm32f7xx_ll_system.h │ ├── stm32f7xx_ll_tim.h │ ├── stm32f7xx_ll_usart.h │ ├── stm32f7xx_ll_usb.h │ ├── stm32f7xx_ll_utils.h │ └── stm32f7xx_ll_wwdg.h └── Src │ ├── Legacy │ └── stm32f7xx_hal_can.c │ ├── stm32f7xx_hal.c │ ├── stm32f7xx_hal_adc.c │ ├── stm32f7xx_hal_adc_ex.c │ ├── stm32f7xx_hal_can.c │ ├── stm32f7xx_hal_cec.c │ ├── stm32f7xx_hal_cortex.c │ ├── stm32f7xx_hal_crc.c │ ├── stm32f7xx_hal_crc_ex.c │ ├── stm32f7xx_hal_cryp.c │ ├── stm32f7xx_hal_cryp_ex.c │ ├── stm32f7xx_hal_dac.c │ ├── stm32f7xx_hal_dac_ex.c │ ├── stm32f7xx_hal_dcmi.c │ ├── stm32f7xx_hal_dcmi_ex.c │ ├── stm32f7xx_hal_dfsdm.c │ ├── stm32f7xx_hal_dma.c │ ├── stm32f7xx_hal_dma2d.c │ ├── stm32f7xx_hal_dma_ex.c │ ├── stm32f7xx_hal_dsi.c │ ├── stm32f7xx_hal_eth.c │ ├── stm32f7xx_hal_flash.c │ ├── stm32f7xx_hal_flash_ex.c │ ├── stm32f7xx_hal_gpio.c │ ├── stm32f7xx_hal_hash.c │ ├── stm32f7xx_hal_hash_ex.c │ ├── stm32f7xx_hal_hcd.c │ ├── stm32f7xx_hal_i2c.c │ ├── stm32f7xx_hal_i2c_ex.c │ ├── stm32f7xx_hal_i2s.c │ ├── stm32f7xx_hal_irda.c │ ├── stm32f7xx_hal_iwdg.c │ ├── stm32f7xx_hal_jpeg.c │ ├── stm32f7xx_hal_lptim.c │ ├── stm32f7xx_hal_ltdc.c │ ├── stm32f7xx_hal_ltdc_ex.c │ ├── stm32f7xx_hal_mdios.c │ ├── stm32f7xx_hal_mmc.c │ ├── stm32f7xx_hal_msp_template.c │ ├── stm32f7xx_hal_nand.c │ ├── stm32f7xx_hal_nor.c │ ├── stm32f7xx_hal_pcd.c │ ├── stm32f7xx_hal_pcd_ex.c │ ├── stm32f7xx_hal_pwr.c │ ├── stm32f7xx_hal_pwr_ex.c │ ├── stm32f7xx_hal_qspi.c │ ├── stm32f7xx_hal_rcc.c │ ├── stm32f7xx_hal_rcc_ex.c │ ├── stm32f7xx_hal_rng.c │ ├── stm32f7xx_hal_rtc.c │ ├── stm32f7xx_hal_rtc_ex.c │ ├── stm32f7xx_hal_sai.c │ ├── stm32f7xx_hal_sai_ex.c │ ├── stm32f7xx_hal_sd.c │ ├── stm32f7xx_hal_sdram.c │ ├── stm32f7xx_hal_smartcard.c │ ├── stm32f7xx_hal_smartcard_ex.c │ ├── stm32f7xx_hal_smbus.c │ ├── stm32f7xx_hal_spdifrx.c │ ├── stm32f7xx_hal_spi.c │ ├── stm32f7xx_hal_sram.c │ ├── stm32f7xx_hal_tim.c │ ├── stm32f7xx_hal_tim_ex.c │ ├── stm32f7xx_hal_timebase_rtc_alarm_template.c │ ├── stm32f7xx_hal_timebase_rtc_wakeup_template.c │ ├── stm32f7xx_hal_timebase_tim_template.c │ ├── stm32f7xx_hal_uart.c │ ├── stm32f7xx_hal_usart.c │ ├── stm32f7xx_hal_wwdg.c │ ├── stm32f7xx_ll_adc.c │ ├── stm32f7xx_ll_crc.c │ ├── stm32f7xx_ll_dac.c │ ├── stm32f7xx_ll_dma.c │ ├── stm32f7xx_ll_dma2d.c │ ├── stm32f7xx_ll_exti.c │ ├── stm32f7xx_ll_fmc.c │ ├── stm32f7xx_ll_gpio.c │ ├── stm32f7xx_ll_i2c.c │ ├── stm32f7xx_ll_lptim.c │ ├── stm32f7xx_ll_pwr.c │ ├── stm32f7xx_ll_rcc.c │ ├── stm32f7xx_ll_rng.c │ ├── stm32f7xx_ll_rtc.c │ ├── stm32f7xx_ll_sdmmc.c │ ├── stm32f7xx_ll_spi.c │ ├── stm32f7xx_ll_tim.c │ ├── stm32f7xx_ll_usart.c │ ├── stm32f7xx_ll_usb.c │ └── stm32f7xx_ll_utils.c ├── LICENSE ├── LinkerScript.ld ├── README.md ├── Release ├── Makefile ├── flash-stlink2-1-STM32F7.sh ├── program-stlink-STM32F7.sh └── stm32f7.cfg ├── STM32F746G-DISCO.xml ├── Utilities ├── Components │ ├── Common │ │ ├── Release_Notes.html │ │ ├── accelero.h │ │ ├── audio.h │ │ ├── camera.h │ │ ├── epd.h │ │ ├── gyro.h │ │ ├── idd.h │ │ ├── io.h │ │ ├── lcd.h │ │ ├── magneto.h │ │ ├── ts.h │ │ └── tsensor.h │ ├── adv7533 │ │ ├── Release_Notes.html │ │ ├── adv7533.c │ │ └── adv7533.h │ ├── ampire480272 │ │ ├── Release_Notes.html │ │ └── ampire480272.h │ ├── ampire640480 │ │ ├── Release_Notes.html │ │ └── ampire640480.h │ ├── exc7200 │ │ ├── Release_Notes.html │ │ ├── exc7200.c │ │ └── exc7200.h │ ├── ft5336 │ │ ├── Release_Notes.html │ │ ├── ft5336.c │ │ └── ft5336.h │ ├── ft6x06 │ │ ├── Release_Notes.html │ │ ├── ft6x06.c │ │ └── ft6x06.h │ ├── mfxstm32l152 │ │ ├── Release_Notes.html │ │ ├── mfxstm32l152.c │ │ └── mfxstm32l152.h │ ├── mx25l512 │ │ ├── Release_Notes.html │ │ └── mx25l512.h │ ├── n25q128a │ │ ├── Release_Notes.html │ │ └── n25q128a.h │ ├── n25q512a │ │ ├── Release_Notes.html │ │ └── n25q512a.h │ ├── otm8009a │ │ ├── Release_Notes.html │ │ ├── otm8009a.c │ │ └── otm8009a.h │ ├── ov9655 │ │ ├── Release_Notes.html │ │ ├── ov9655.c │ │ └── ov9655.h │ ├── rk043fn48h │ │ ├── Release_Notes.html │ │ └── rk043fn48h.h │ ├── s5k5cag │ │ ├── Release_Notes.html │ │ ├── s5k5cag.c │ │ └── s5k5cag.h │ ├── st7735 │ │ ├── Release_Notes.html │ │ ├── st7735.c │ │ └── st7735.h │ ├── st7789h2 │ │ ├── Release_Notes.html │ │ ├── st7789h2.c │ │ └── st7789h2.h │ ├── stmpe811 │ │ ├── Release_Notes.html │ │ ├── stmpe811.c │ │ └── stmpe811.h │ ├── ts3510 │ │ ├── Release_Notes.html │ │ ├── ts3510.c │ │ └── ts3510.h │ └── wm8994 │ │ ├── Release_Notes.html │ │ ├── wm8994.c │ │ └── wm8994.h └── STM32746G-Discovery │ ├── Release_Notes.html │ ├── STM32746G-Discovery_BSP_User_Manual.chm │ ├── stm32746g_discovery.c │ ├── stm32746g_discovery.h │ ├── stm32746g_discovery_audio.c │ ├── stm32746g_discovery_audio.h │ ├── stm32746g_discovery_camera.c │ ├── stm32746g_discovery_camera.h │ ├── stm32746g_discovery_eeprom.c │ ├── stm32746g_discovery_eeprom.h │ ├── stm32746g_discovery_qspi.c │ ├── stm32746g_discovery_qspi.h │ ├── stm32746g_discovery_sd.c │ ├── stm32746g_discovery_sd.h │ ├── stm32746g_discovery_sdram.c │ ├── stm32746g_discovery_sdram.h │ ├── stm32746g_discovery_ts.c │ └── stm32746g_discovery_ts.h ├── gdb-scripts ├── gdb-init-remote.gdb └── gdb-init.gdb ├── hal_stm_lvgl ├── tft │ ├── tft.c │ └── tft.h └── touchpad │ ├── touchpad.c │ └── touchpad.h ├── ide ├── cmake │ └── arm-none-eabi.cmake └── iar │ ├── startup_stm32f746xx.s │ ├── stm32f746_disco_lvgl.ewd │ ├── stm32f746_disco_lvgl.ewp │ ├── stm32f746_disco_lvgl.ewt │ ├── stm32f746_disco_lvgl.eww │ └── stm32f746xx_flash.icf ├── inc └── stm32f7xx_it.h ├── lv_conf.h ├── lv_port_stm32f746_disco Debug.launch ├── src ├── main.c ├── stm32f7xx_it.c ├── syscalls.c └── system_stm32f7xx.c └── startup ├── startup_stm32f746xx.s └── sysmem.c /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.cproject -------------------------------------------------------------------------------- /.cproject_org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.cproject_org -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/auto-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.github/auto-comment.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/stm32_port.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.github/workflows/stm32_port.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.gitmodules -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.project -------------------------------------------------------------------------------- /.project_org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.project_org -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.vscode/STM32F746.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.vscode/STM32F746.svd -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMSIS/core/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/arm_common_tables.h -------------------------------------------------------------------------------- /CMSIS/core/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/arm_const_structs.h -------------------------------------------------------------------------------- /CMSIS/core/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/arm_math.h -------------------------------------------------------------------------------- /CMSIS/core/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/cmsis_armcc.h -------------------------------------------------------------------------------- /CMSIS/core/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /CMSIS/core/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/cmsis_gcc.h -------------------------------------------------------------------------------- /CMSIS/core/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_cm0.h -------------------------------------------------------------------------------- /CMSIS/core/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_cm0plus.h -------------------------------------------------------------------------------- /CMSIS/core/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_cm3.h -------------------------------------------------------------------------------- /CMSIS/core/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_cm4.h -------------------------------------------------------------------------------- /CMSIS/core/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_cm7.h -------------------------------------------------------------------------------- /CMSIS/core/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_cmFunc.h -------------------------------------------------------------------------------- /CMSIS/core/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_cmInstr.h -------------------------------------------------------------------------------- /CMSIS/core/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_cmSimd.h -------------------------------------------------------------------------------- /CMSIS/core/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_sc000.h -------------------------------------------------------------------------------- /CMSIS/core/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/core/core_sc300.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f722xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f722xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f723xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f723xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f732xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f732xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f733xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f733xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f745xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f745xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f746xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f746xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f756xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f756xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f765xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f765xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f767xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f767xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f769xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f769xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f777xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f777xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f779xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f779xx.h -------------------------------------------------------------------------------- /CMSIS/device/stm32f7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/stm32f7xx.h -------------------------------------------------------------------------------- /CMSIS/device/system_stm32f7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMSIS/device/system_stm32f7xx.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Debug/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Debug/.gitignore -------------------------------------------------------------------------------- /HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/Legacy/stm32f7xx_hal_can_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/Legacy/stm32f7xx_hal_can_legacy.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32_assert_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32_assert_template.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_adc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_can.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_cec.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_conf_template.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_cortex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_crc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_crc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_crc_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_cryp.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_cryp_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_cryp_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_dac.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_dac_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_dac_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_dcmi.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_dcmi_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_dcmi_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_def.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_dfsdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_dfsdm.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_dma.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_dma2d.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_dsi.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_eth.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_flash.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_gpio.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_hash.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_hash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_hash_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_hcd.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_i2c.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_i2s.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_irda.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_irda_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_irda_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_iwdg.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_jpeg.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_lptim.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_ltdc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_ltdc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_ltdc_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_mdios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_mdios.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_mmc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_nand.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_nor.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_pcd.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_pwr.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_qspi.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_rcc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_rng.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_rtc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_sai.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_sai_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_sai_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_sd.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_sdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_sdram.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_smartcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_smartcard.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_smartcard_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_smartcard_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_smbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_smbus.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_spdifrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_spdifrx.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_spi.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_sram.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_tim.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_uart.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_usart.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_usart_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_usart_ex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_hal_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_hal_wwdg.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_adc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_bus.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_cortex.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_crc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_dac.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_dma.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_dma2d.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_exti.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_fmc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_gpio.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_i2c.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_iwdg.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_lptim.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_pwr.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_rcc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_rng.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_rtc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_spi.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_system.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_tim.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_usart.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_usb.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_utils.h -------------------------------------------------------------------------------- /HAL_Driver/Inc/stm32f7xx_ll_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Inc/stm32f7xx_ll_wwdg.h -------------------------------------------------------------------------------- /HAL_Driver/Src/Legacy/stm32f7xx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/Legacy/stm32f7xx_hal_can.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_adc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_adc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_adc_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_can.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_cec.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_cortex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_crc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_crc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_crc_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_cryp.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_cryp_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_cryp_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_dac.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_dac_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_dac_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_dcmi.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_dcmi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_dcmi_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_dfsdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_dfsdm.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_dma.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_dma2d.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_dma_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_dsi.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_eth.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_flash.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_flash_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_gpio.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_hash.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_hash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_hash_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_hcd.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_i2c.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_i2s.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_irda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_irda.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_iwdg.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_jpeg.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_lptim.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_ltdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_ltdc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_ltdc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_ltdc_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_mdios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_mdios.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_mmc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_msp_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_msp_template.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_nand.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_nor.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_pcd.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_pcd_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_pwr.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_qspi.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_rcc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_rng.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_rtc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_rtc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_rtc_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_sai.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_sai_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_sai_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_sd.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_sdram.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_smartcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_smartcard.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_smartcard_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_smartcard_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_smbus.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_spdifrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_spdifrx.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_spi.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_sram.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_tim.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_tim_ex.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_timebase_rtc_alarm_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_timebase_rtc_alarm_template.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_timebase_rtc_wakeup_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_timebase_rtc_wakeup_template.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_timebase_tim_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_timebase_tim_template.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_uart.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_usart.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_hal_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_hal_wwdg.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_adc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_crc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_dac.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_dma.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_dma2d.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_exti.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_fmc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_gpio.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_i2c.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_lptim.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_pwr.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_rcc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_rng.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_rtc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_sdmmc.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_spi.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_tim.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_usart.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_usb.c -------------------------------------------------------------------------------- /HAL_Driver/Src/stm32f7xx_ll_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/HAL_Driver/Src/stm32f7xx_ll_utils.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/LICENSE -------------------------------------------------------------------------------- /LinkerScript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/LinkerScript.ld -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/README.md -------------------------------------------------------------------------------- /Release/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Release/Makefile -------------------------------------------------------------------------------- /Release/flash-stlink2-1-STM32F7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Release/flash-stlink2-1-STM32F7.sh -------------------------------------------------------------------------------- /Release/program-stlink-STM32F7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Release/program-stlink-STM32F7.sh -------------------------------------------------------------------------------- /Release/stm32f7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Release/stm32f7.cfg -------------------------------------------------------------------------------- /STM32F746G-DISCO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/STM32F746G-DISCO.xml -------------------------------------------------------------------------------- /Utilities/Components/Common/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/Common/accelero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/accelero.h -------------------------------------------------------------------------------- /Utilities/Components/Common/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/audio.h -------------------------------------------------------------------------------- /Utilities/Components/Common/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/camera.h -------------------------------------------------------------------------------- /Utilities/Components/Common/epd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/epd.h -------------------------------------------------------------------------------- /Utilities/Components/Common/gyro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/gyro.h -------------------------------------------------------------------------------- /Utilities/Components/Common/idd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/idd.h -------------------------------------------------------------------------------- /Utilities/Components/Common/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/io.h -------------------------------------------------------------------------------- /Utilities/Components/Common/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/lcd.h -------------------------------------------------------------------------------- /Utilities/Components/Common/magneto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/magneto.h -------------------------------------------------------------------------------- /Utilities/Components/Common/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/ts.h -------------------------------------------------------------------------------- /Utilities/Components/Common/tsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/Common/tsensor.h -------------------------------------------------------------------------------- /Utilities/Components/adv7533/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/adv7533/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/adv7533/adv7533.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/adv7533/adv7533.c -------------------------------------------------------------------------------- /Utilities/Components/adv7533/adv7533.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/adv7533/adv7533.h -------------------------------------------------------------------------------- /Utilities/Components/ampire480272/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ampire480272/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/ampire480272/ampire480272.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ampire480272/ampire480272.h -------------------------------------------------------------------------------- /Utilities/Components/ampire640480/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ampire640480/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/ampire640480/ampire640480.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ampire640480/ampire640480.h -------------------------------------------------------------------------------- /Utilities/Components/exc7200/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/exc7200/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/exc7200/exc7200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/exc7200/exc7200.c -------------------------------------------------------------------------------- /Utilities/Components/exc7200/exc7200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/exc7200/exc7200.h -------------------------------------------------------------------------------- /Utilities/Components/ft5336/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ft5336/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/ft5336/ft5336.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ft5336/ft5336.c -------------------------------------------------------------------------------- /Utilities/Components/ft5336/ft5336.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ft5336/ft5336.h -------------------------------------------------------------------------------- /Utilities/Components/ft6x06/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ft6x06/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/ft6x06/ft6x06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ft6x06/ft6x06.c -------------------------------------------------------------------------------- /Utilities/Components/ft6x06/ft6x06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ft6x06/ft6x06.h -------------------------------------------------------------------------------- /Utilities/Components/mfxstm32l152/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/mfxstm32l152/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/mfxstm32l152/mfxstm32l152.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/mfxstm32l152/mfxstm32l152.c -------------------------------------------------------------------------------- /Utilities/Components/mfxstm32l152/mfxstm32l152.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/mfxstm32l152/mfxstm32l152.h -------------------------------------------------------------------------------- /Utilities/Components/mx25l512/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/mx25l512/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/mx25l512/mx25l512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/mx25l512/mx25l512.h -------------------------------------------------------------------------------- /Utilities/Components/n25q128a/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/n25q128a/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/n25q128a/n25q128a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/n25q128a/n25q128a.h -------------------------------------------------------------------------------- /Utilities/Components/n25q512a/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/n25q512a/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/n25q512a/n25q512a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/n25q512a/n25q512a.h -------------------------------------------------------------------------------- /Utilities/Components/otm8009a/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/otm8009a/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/otm8009a/otm8009a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/otm8009a/otm8009a.c -------------------------------------------------------------------------------- /Utilities/Components/otm8009a/otm8009a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/otm8009a/otm8009a.h -------------------------------------------------------------------------------- /Utilities/Components/ov9655/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ov9655/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/ov9655/ov9655.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ov9655/ov9655.c -------------------------------------------------------------------------------- /Utilities/Components/ov9655/ov9655.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ov9655/ov9655.h -------------------------------------------------------------------------------- /Utilities/Components/rk043fn48h/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/rk043fn48h/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/rk043fn48h/rk043fn48h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/rk043fn48h/rk043fn48h.h -------------------------------------------------------------------------------- /Utilities/Components/s5k5cag/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/s5k5cag/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/s5k5cag/s5k5cag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/s5k5cag/s5k5cag.c -------------------------------------------------------------------------------- /Utilities/Components/s5k5cag/s5k5cag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/s5k5cag/s5k5cag.h -------------------------------------------------------------------------------- /Utilities/Components/st7735/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/st7735/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/st7735/st7735.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/st7735/st7735.c -------------------------------------------------------------------------------- /Utilities/Components/st7735/st7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/st7735/st7735.h -------------------------------------------------------------------------------- /Utilities/Components/st7789h2/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/st7789h2/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/st7789h2/st7789h2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/st7789h2/st7789h2.c -------------------------------------------------------------------------------- /Utilities/Components/st7789h2/st7789h2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/st7789h2/st7789h2.h -------------------------------------------------------------------------------- /Utilities/Components/stmpe811/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/stmpe811/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/stmpe811/stmpe811.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/stmpe811/stmpe811.c -------------------------------------------------------------------------------- /Utilities/Components/stmpe811/stmpe811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/stmpe811/stmpe811.h -------------------------------------------------------------------------------- /Utilities/Components/ts3510/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ts3510/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/ts3510/ts3510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ts3510/ts3510.c -------------------------------------------------------------------------------- /Utilities/Components/ts3510/ts3510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/ts3510/ts3510.h -------------------------------------------------------------------------------- /Utilities/Components/wm8994/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/wm8994/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/Components/wm8994/wm8994.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/wm8994/wm8994.c -------------------------------------------------------------------------------- /Utilities/Components/wm8994/wm8994.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/Components/wm8994/wm8994.h -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/Release_Notes.html -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/STM32746G-Discovery_BSP_User_Manual.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/STM32746G-Discovery_BSP_User_Manual.chm -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery.c -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery.h -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_audio.c -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_audio.h -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_camera.c -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_camera.h -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_eeprom.c -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_eeprom.h -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_qspi.c -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_qspi.h -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_sd.c -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_sd.h -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_sdram.c -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_sdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_sdram.h -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_ts.c -------------------------------------------------------------------------------- /Utilities/STM32746G-Discovery/stm32746g_discovery_ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/Utilities/STM32746G-Discovery/stm32746g_discovery_ts.h -------------------------------------------------------------------------------- /gdb-scripts/gdb-init-remote.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/gdb-scripts/gdb-init-remote.gdb -------------------------------------------------------------------------------- /gdb-scripts/gdb-init.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/gdb-scripts/gdb-init.gdb -------------------------------------------------------------------------------- /hal_stm_lvgl/tft/tft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/hal_stm_lvgl/tft/tft.c -------------------------------------------------------------------------------- /hal_stm_lvgl/tft/tft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/hal_stm_lvgl/tft/tft.h -------------------------------------------------------------------------------- /hal_stm_lvgl/touchpad/touchpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/hal_stm_lvgl/touchpad/touchpad.c -------------------------------------------------------------------------------- /hal_stm_lvgl/touchpad/touchpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/hal_stm_lvgl/touchpad/touchpad.h -------------------------------------------------------------------------------- /ide/cmake/arm-none-eabi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/ide/cmake/arm-none-eabi.cmake -------------------------------------------------------------------------------- /ide/iar/startup_stm32f746xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/ide/iar/startup_stm32f746xx.s -------------------------------------------------------------------------------- /ide/iar/stm32f746_disco_lvgl.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/ide/iar/stm32f746_disco_lvgl.ewd -------------------------------------------------------------------------------- /ide/iar/stm32f746_disco_lvgl.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/ide/iar/stm32f746_disco_lvgl.ewp -------------------------------------------------------------------------------- /ide/iar/stm32f746_disco_lvgl.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/ide/iar/stm32f746_disco_lvgl.ewt -------------------------------------------------------------------------------- /ide/iar/stm32f746_disco_lvgl.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/ide/iar/stm32f746_disco_lvgl.eww -------------------------------------------------------------------------------- /ide/iar/stm32f746xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/ide/iar/stm32f746xx_flash.icf -------------------------------------------------------------------------------- /inc/stm32f7xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/inc/stm32f7xx_it.h -------------------------------------------------------------------------------- /lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/lv_conf.h -------------------------------------------------------------------------------- /lv_port_stm32f746_disco Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/lv_port_stm32f746_disco Debug.launch -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/src/main.c -------------------------------------------------------------------------------- /src/stm32f7xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/src/stm32f7xx_it.c -------------------------------------------------------------------------------- /src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/src/syscalls.c -------------------------------------------------------------------------------- /src/system_stm32f7xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/src/system_stm32f7xx.c -------------------------------------------------------------------------------- /startup/startup_stm32f746xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/startup/startup_stm32f746xx.s -------------------------------------------------------------------------------- /startup/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lv_port_stm32f746_disco/HEAD/startup/sysmem.c --------------------------------------------------------------------------------