├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── create-a-new-issue.md ├── .gitignore ├── LICENSE ├── README.md ├── binaries ├── BIGTREE_TFT24_V1_1 │ ├── BIGTREE_TFT24_V1.1.26.x.bin │ └── BIGTREE_TFT24_V1.1.26.x.bin.md5sum ├── BIGTREE_TFT28_V3_0 │ ├── BIGTREE_TFT28_V3.0.26.x.bin │ └── BIGTREE_TFT28_V3.0.26.x.bin.md5sum ├── BIGTREE_TFT35_B1_V3_0 │ ├── BIGTREE_TFT35_V3.0_B1.26.x.bin │ └── BIGTREE_TFT35_V3.0_B1.26.x.bin.md5sum ├── BIGTREE_TFT35_E3_V3_0 │ ├── BIGTREE_TFT35_V3.0_E3.26.x.bin │ └── BIGTREE_TFT35_V3.0_E3.26.x.bin.md5sum ├── BIGTREE_TFT35_V3_0 │ ├── BIGTREE_TFT35_V3.0.26.x.bin │ └── BIGTREE_TFT35_V3.0.26.x.bin.md5sum ├── BIGTREE_TFT43_V3_0 │ ├── BIGTREE_TFT43_V3.0.26.x.bin │ └── BIGTREE_TFT43_V3.0.26.x.bin.md5sum ├── BIGTREE_TFT50_V3_0 │ ├── BIGTREE_TFT50_V3.0.26.x.bin │ └── BIGTREE_TFT50_V3.0.26.x.bin.md5sum ├── BIGTREE_TFT70_V3_0 │ ├── BIGTREE_TFT70_V3.0.26.x.bin │ └── BIGTREE_TFT70_V3.0.26.x.bin.md5sum ├── MKS_28_V1_0 │ ├── MKSTFT28.bin │ └── MKSTFT28.bin.md5sum ├── MKS_32_V1_4 │ ├── MKS_32_V1_4.26.x.bin │ └── MKS_32_V1_4.26.x.bin.md5sum ├── MKS_32_V1_4_NOBL │ ├── MKS_32_V1_4.26.x.bin │ └── MKS_32_V1_4.26.x.bin.md5sum └── _debug │ ├── BIGTREE_TFT24_V1_1 │ ├── BIGTREE_TFT24_V1.1.26.x.bin │ └── BIGTREE_TFT24_V1.1.26.x.bin.md5sum │ ├── BIGTREE_TFT28_V3_0 │ ├── BIGTREE_TFT28_V3.0.26.x.bin │ └── BIGTREE_TFT28_V3.0.26.x.bin.md5sum │ ├── BIGTREE_TFT35_B1_V3_0 │ ├── BIGTREE_TFT35_V3.0_B1.26.x.bin │ └── BIGTREE_TFT35_V3.0_B1.26.x.bin.md5sum │ ├── BIGTREE_TFT35_E3_V3_0 │ ├── BIGTREE_TFT35_V3.0_E3.26.x.bin │ └── BIGTREE_TFT35_V3.0_E3.26.x.bin.md5sum │ ├── BIGTREE_TFT35_V3_0 │ ├── BIGTREE_TFT35_V3.0.26.x.bin │ └── BIGTREE_TFT35_V3.0.26.x.bin.md5sum │ ├── BIGTREE_TFT43_V3_0 │ ├── BIGTREE_TFT43_V3.0.26.x.bin │ └── BIGTREE_TFT43_V3.0.26.x.bin.md5sum │ ├── BIGTREE_TFT50_V3_0 │ ├── BIGTREE_TFT50_V3.0.26.x.bin │ └── BIGTREE_TFT50_V3.0.26.x.bin.md5sum │ ├── BIGTREE_TFT70_V3_0 │ ├── BIGTREE_TFT70_V3.0.26.x.bin │ └── BIGTREE_TFT70_V3.0.26.x.bin.md5sum │ ├── MKS_28_V1_0 │ ├── MKSTFT28.bin │ └── MKSTFT28.bin.md5sum │ ├── MKS_32_V1_4 │ ├── MKS_32_V1_4.26.x.bin │ └── MKS_32_V1_4.26.x.bin.md5sum │ ├── MKS_32_V1_4_NOBL │ ├── MKS_32_V1_4.26.x.bin │ └── MKS_32_V1_4.26.x.bin.md5sum │ └── README.txt ├── platformio.ini └── src ├── Libraries ├── Startup │ ├── stm32f10x_cl │ │ └── startup_stm32f10x_cl.s │ ├── stm32f10x_hd │ │ └── startup_stm32f10x_hd.s │ ├── stm32f2xx │ │ └── startup_stm32f2xx.s │ └── stm32f40_41x │ │ └── startup_stm32f407xx.s ├── cmsis │ ├── Core-CM3 │ │ ├── core_cm3.c │ │ └── core_cm3.h │ ├── Core-CM4 │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── core_cm4.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ ├── core_sc000.h │ │ └── core_sc300.h │ ├── stm32f10x │ │ ├── stm32f10x.h │ │ ├── system_stm32f10x.c │ │ └── system_stm32f10x.h │ ├── stm32f2xx │ │ ├── stm32f2xx.h │ │ ├── system_stm32f2xx.c │ │ └── system_stm32f2xx.h │ └── stm32f4xx │ │ ├── stm32f4xx.h │ │ ├── system_stm32f4xx.c │ │ └── system_stm32f4xx.h └── fwlib │ ├── stm32f10x │ ├── inc │ │ ├── misc.h │ │ ├── stm32f10x_adc.h │ │ ├── stm32f10x_bkp.h │ │ ├── stm32f10x_can.h │ │ ├── stm32f10x_cec.h │ │ ├── stm32f10x_crc.h │ │ ├── stm32f10x_dac.h │ │ ├── stm32f10x_dbgmcu.h │ │ ├── stm32f10x_dma.h │ │ ├── stm32f10x_exti.h │ │ ├── stm32f10x_flash.h │ │ ├── stm32f10x_fsmc.h │ │ ├── stm32f10x_gpio.h │ │ ├── stm32f10x_i2c.h │ │ ├── stm32f10x_iwdg.h │ │ ├── stm32f10x_pwr.h │ │ ├── stm32f10x_rcc.h │ │ ├── stm32f10x_rtc.h │ │ ├── stm32f10x_sdio.h │ │ ├── stm32f10x_spi.h │ │ ├── stm32f10x_tim.h │ │ ├── stm32f10x_usart.h │ │ └── stm32f10x_wwdg.h │ ├── src │ │ ├── misc.c │ │ ├── stm32f10x_adc.c │ │ ├── stm32f10x_bkp.c │ │ ├── stm32f10x_can.c │ │ ├── stm32f10x_cec.c │ │ ├── stm32f10x_crc.c │ │ ├── stm32f10x_dac.c │ │ ├── stm32f10x_dbgmcu.c │ │ ├── stm32f10x_dma.c │ │ ├── stm32f10x_exti.c │ │ ├── stm32f10x_flash.c │ │ ├── stm32f10x_fsmc.c │ │ ├── stm32f10x_gpio.c │ │ ├── stm32f10x_i2c.c │ │ ├── stm32f10x_iwdg.c │ │ ├── stm32f10x_pwr.c │ │ ├── stm32f10x_rcc.c │ │ ├── stm32f10x_rtc.c │ │ ├── stm32f10x_sdio.c │ │ ├── stm32f10x_spi.c │ │ ├── stm32f10x_tim.c │ │ ├── stm32f10x_usart.c │ │ └── stm32f10x_wwdg.c │ └── stm32f10x_conf.h │ ├── stm32f2xx │ ├── inc │ │ ├── misc.h │ │ ├── stm32f2xx_adc.h │ │ ├── stm32f2xx_can.h │ │ ├── stm32f2xx_crc.h │ │ ├── stm32f2xx_cryp.h │ │ ├── stm32f2xx_dac.h │ │ ├── stm32f2xx_dbgmcu.h │ │ ├── stm32f2xx_dcmi.h │ │ ├── stm32f2xx_dma.h │ │ ├── stm32f2xx_exti.h │ │ ├── stm32f2xx_flash.h │ │ ├── stm32f2xx_fsmc.h │ │ ├── stm32f2xx_gpio.h │ │ ├── stm32f2xx_hash.h │ │ ├── stm32f2xx_i2c.h │ │ ├── stm32f2xx_iwdg.h │ │ ├── stm32f2xx_pwr.h │ │ ├── stm32f2xx_rcc.h │ │ ├── stm32f2xx_rng.h │ │ ├── stm32f2xx_rtc.h │ │ ├── stm32f2xx_sdio.h │ │ ├── stm32f2xx_spi.h │ │ ├── stm32f2xx_syscfg.h │ │ ├── stm32f2xx_tim.h │ │ ├── stm32f2xx_usart.h │ │ └── stm32f2xx_wwdg.h │ ├── src │ │ ├── misc.c │ │ ├── stm32f2xx_adc.c │ │ ├── stm32f2xx_can.c │ │ ├── stm32f2xx_crc.c │ │ ├── stm32f2xx_cryp.c │ │ ├── stm32f2xx_cryp_aes.c │ │ ├── stm32f2xx_cryp_des.c │ │ ├── stm32f2xx_cryp_tdes.c │ │ ├── stm32f2xx_dac.c │ │ ├── stm32f2xx_dbgmcu.c │ │ ├── stm32f2xx_dcmi.c │ │ ├── stm32f2xx_dma.c │ │ ├── stm32f2xx_exti.c │ │ ├── stm32f2xx_flash.c │ │ ├── stm32f2xx_fsmc.c │ │ ├── stm32f2xx_gpio.c │ │ ├── stm32f2xx_hash.c │ │ ├── stm32f2xx_hash_md5.c │ │ ├── stm32f2xx_hash_sha1.c │ │ ├── stm32f2xx_i2c.c │ │ ├── stm32f2xx_iwdg.c │ │ ├── stm32f2xx_pwr.c │ │ ├── stm32f2xx_rcc.c │ │ ├── stm32f2xx_rng.c │ │ ├── stm32f2xx_rtc.c │ │ ├── stm32f2xx_sdio.c │ │ ├── stm32f2xx_spi.c │ │ ├── stm32f2xx_syscfg.c │ │ ├── stm32f2xx_tim.c │ │ ├── stm32f2xx_usart.c │ │ └── stm32f2xx_wwdg.c │ └── stm32f2xx_conf.h │ └── stm32f4xx │ ├── inc │ ├── misc.h │ ├── stm32f4xx_adc.h │ ├── stm32f4xx_can.h │ ├── stm32f4xx_cec.h │ ├── stm32f4xx_crc.h │ ├── stm32f4xx_cryp.h │ ├── stm32f4xx_dac.h │ ├── stm32f4xx_dbgmcu.h │ ├── stm32f4xx_dcmi.h │ ├── stm32f4xx_dfsdm.h │ ├── stm32f4xx_dma.h │ ├── stm32f4xx_dma2d.h │ ├── stm32f4xx_dsi.h │ ├── stm32f4xx_exti.h │ ├── stm32f4xx_flash.h │ ├── stm32f4xx_flash_ramfunc.h │ ├── stm32f4xx_fmpi2c.h │ ├── stm32f4xx_fsmc.h │ ├── stm32f4xx_gpio.h │ ├── stm32f4xx_hash.h │ ├── stm32f4xx_i2c.h │ ├── stm32f4xx_iwdg.h │ ├── stm32f4xx_lptim.h │ ├── stm32f4xx_ltdc.h │ ├── stm32f4xx_pwr.h │ ├── stm32f4xx_qspi.h │ ├── stm32f4xx_rcc.h │ ├── stm32f4xx_rng.h │ ├── stm32f4xx_rtc.h │ ├── stm32f4xx_sai.h │ ├── stm32f4xx_sdio.h │ ├── stm32f4xx_spdifrx.h │ ├── stm32f4xx_spi.h │ ├── stm32f4xx_syscfg.h │ ├── stm32f4xx_tim.h │ ├── stm32f4xx_usart.h │ └── stm32f4xx_wwdg.h │ ├── src │ ├── misc.c │ ├── stm32f4xx_adc.c │ ├── stm32f4xx_can.c │ ├── stm32f4xx_cec.c │ ├── stm32f4xx_crc.c │ ├── stm32f4xx_cryp.c │ ├── stm32f4xx_cryp_aes.c │ ├── stm32f4xx_cryp_des.c │ ├── stm32f4xx_cryp_tdes.c │ ├── stm32f4xx_dac.c │ ├── stm32f4xx_dbgmcu.c │ ├── stm32f4xx_dcmi.c │ ├── stm32f4xx_dfsdm.c │ ├── stm32f4xx_dma.c │ ├── stm32f4xx_dma2d.c │ ├── stm32f4xx_dsi.c │ ├── stm32f4xx_exti.c │ ├── stm32f4xx_flash.c │ ├── stm32f4xx_flash_ramfunc.c │ ├── stm32f4xx_fmpi2c.c │ ├── stm32f4xx_fsmc.c │ ├── stm32f4xx_gpio.c │ ├── stm32f4xx_hash.c │ ├── stm32f4xx_hash_md5.c │ ├── stm32f4xx_hash_sha1.c │ ├── stm32f4xx_i2c.c │ ├── stm32f4xx_iwdg.c │ ├── stm32f4xx_lptim.c │ ├── stm32f4xx_ltdc.c │ ├── stm32f4xx_pwr.c │ ├── stm32f4xx_qspi.c │ ├── stm32f4xx_rcc.c │ ├── stm32f4xx_rng.c │ ├── stm32f4xx_rtc.c │ ├── stm32f4xx_sai.c │ ├── stm32f4xx_sdio.c │ ├── stm32f4xx_spdifrx.c │ ├── stm32f4xx_spi.c │ ├── stm32f4xx_syscfg.c │ ├── stm32f4xx_tim.c │ ├── stm32f4xx_usart.c │ └── stm32f4xx_wwdg.c │ └── stm32f4xx_conf.h └── User ├── API ├── Colors.h └── UI │ ├── GUI.c │ └── GUI.h ├── Fatfs ├── diskio.c ├── diskio.h ├── ff.c ├── ff.h ├── ffconf.h ├── ffsystem.c ├── ffunicode.c ├── myfatfs.c └── myfatfs.h ├── Hal ├── CircularQueue.h ├── LCD_Init.c ├── LCD_Init.h ├── STM32Fxx_Pins.h ├── sd.c ├── sd.h ├── stm32f10x │ ├── GPIO_Init.c │ ├── GPIO_Init.h │ ├── lcd.c │ ├── lcd.h │ ├── spi.c │ ├── spi.h │ ├── spi_slave.c │ ├── spi_slave.h │ ├── spi_slave_mks.c │ ├── timer_pwm.c │ └── timer_pwm.h └── stm32f2_f4xx │ ├── GPIO_Init.c │ ├── GPIO_Init.h │ ├── lcd.c │ ├── lcd.h │ ├── spi.c │ ├── spi.h │ ├── spi_slave.c │ ├── spi_slave.h │ ├── timer_pwm.c │ └── timer_pwm.h ├── Variants ├── Resolution │ ├── TFT_320X240.h │ ├── TFT_480X272.h │ ├── TFT_480X320.h │ └── TFT_800X480.h ├── pin_MKS_TFT28_V1_0.h ├── pin_MKS_TFT32_V1_4.h ├── pin_TFT24_V1_1.h ├── pin_TFT28_V3_0.h ├── pin_TFT35_B1_V3_0.h ├── pin_TFT35_E3_V3_0.h ├── pin_TFT35_V3_0.h ├── pin_TFT43_V3_0.h ├── pin_TFT50_V3_0.h ├── pin_TFT70_V3_0.h └── variants.h ├── delay.c ├── delay.h ├── encoder.c ├── encoder.h ├── features.h ├── includes.h ├── main.cpp ├── timer.c └── timer.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/create-a-new-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/.github/ISSUE_TEMPLATE/create-a-new-issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/README.md -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT24_V1_1/BIGTREE_TFT24_V1.1.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/BIGTREE_TFT24_V1_1/BIGTREE_TFT24_V1.1.26.x.bin -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT24_V1_1/BIGTREE_TFT24_V1.1.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 9f232e030e67cb063d7279b3ea516fbb BIGTREE_TFT24_V1.1.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT28_V3_0/BIGTREE_TFT28_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/BIGTREE_TFT28_V3_0/BIGTREE_TFT28_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT28_V3_0/BIGTREE_TFT28_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | e71c82f257bd1d80e1295c777c2c868c BIGTREE_TFT28_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT35_B1_V3_0/BIGTREE_TFT35_V3.0_B1.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/BIGTREE_TFT35_B1_V3_0/BIGTREE_TFT35_V3.0_B1.26.x.bin -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT35_B1_V3_0/BIGTREE_TFT35_V3.0_B1.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | adf3a3197f90b3f12797ed643cf60710 BIGTREE_TFT35_V3.0_B1.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT35_E3_V3_0/BIGTREE_TFT35_V3.0_E3.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/BIGTREE_TFT35_E3_V3_0/BIGTREE_TFT35_V3.0_E3.26.x.bin -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT35_E3_V3_0/BIGTREE_TFT35_V3.0_E3.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 88a6bd058e23c0acc1ecf7a6e38cdc12 BIGTREE_TFT35_V3.0_E3.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT35_V3_0/BIGTREE_TFT35_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/BIGTREE_TFT35_V3_0/BIGTREE_TFT35_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT35_V3_0/BIGTREE_TFT35_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 785585f0f51c1322d7bc3d6bb79147d0 BIGTREE_TFT35_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT43_V3_0/BIGTREE_TFT43_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/BIGTREE_TFT43_V3_0/BIGTREE_TFT43_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT43_V3_0/BIGTREE_TFT43_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | dc3b1af8f3fabeb2dc61ef5257423370 BIGTREE_TFT43_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT50_V3_0/BIGTREE_TFT50_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/BIGTREE_TFT50_V3_0/BIGTREE_TFT50_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT50_V3_0/BIGTREE_TFT50_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 93eb8e473b8b97d94fa0ba2053aa8bc9 BIGTREE_TFT50_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT70_V3_0/BIGTREE_TFT70_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/BIGTREE_TFT70_V3_0/BIGTREE_TFT70_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/BIGTREE_TFT70_V3_0/BIGTREE_TFT70_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 1d385b34489be8a98ead200d4529d6f1 BIGTREE_TFT70_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/MKS_28_V1_0/MKSTFT28.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/MKS_28_V1_0/MKSTFT28.bin -------------------------------------------------------------------------------- /binaries/MKS_28_V1_0/MKSTFT28.bin.md5sum: -------------------------------------------------------------------------------- 1 | 5580e043f3c830282b487f5b34caf3b4 MKSTFT28.bin 2 | -------------------------------------------------------------------------------- /binaries/MKS_32_V1_4/MKS_32_V1_4.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/MKS_32_V1_4/MKS_32_V1_4.26.x.bin -------------------------------------------------------------------------------- /binaries/MKS_32_V1_4/MKS_32_V1_4.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 5580e043f3c830282b487f5b34caf3b4 MKS_32_V1_4.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/MKS_32_V1_4_NOBL/MKS_32_V1_4.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/MKS_32_V1_4_NOBL/MKS_32_V1_4.26.x.bin -------------------------------------------------------------------------------- /binaries/MKS_32_V1_4_NOBL/MKS_32_V1_4.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 4d2579f443d3dce40f3da2bc283941fe MKS_32_V1_4.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT24_V1_1/BIGTREE_TFT24_V1.1.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/BIGTREE_TFT24_V1_1/BIGTREE_TFT24_V1.1.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT24_V1_1/BIGTREE_TFT24_V1.1.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | c96dde49eb7f12e95a8e2856fddd7737 BIGTREE_TFT24_V1.1.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT28_V3_0/BIGTREE_TFT28_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/BIGTREE_TFT28_V3_0/BIGTREE_TFT28_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT28_V3_0/BIGTREE_TFT28_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 113c2542a6fdf2232d95e7aed1f64779 BIGTREE_TFT28_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT35_B1_V3_0/BIGTREE_TFT35_V3.0_B1.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/BIGTREE_TFT35_B1_V3_0/BIGTREE_TFT35_V3.0_B1.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT35_B1_V3_0/BIGTREE_TFT35_V3.0_B1.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 9ec330efc9eb40f0a867dafa6b94a674 BIGTREE_TFT35_V3.0_B1.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT35_E3_V3_0/BIGTREE_TFT35_V3.0_E3.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/BIGTREE_TFT35_E3_V3_0/BIGTREE_TFT35_V3.0_E3.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT35_E3_V3_0/BIGTREE_TFT35_V3.0_E3.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | ee254abc8db5c9add5312b1a4865570d BIGTREE_TFT35_V3.0_E3.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT35_V3_0/BIGTREE_TFT35_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/BIGTREE_TFT35_V3_0/BIGTREE_TFT35_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT35_V3_0/BIGTREE_TFT35_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 8a8ad7dd85ba480caae9afc520fdbb29 BIGTREE_TFT35_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT43_V3_0/BIGTREE_TFT43_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/BIGTREE_TFT43_V3_0/BIGTREE_TFT43_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT43_V3_0/BIGTREE_TFT43_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 0ae32388ea6eeb85927c5152ede9ddb7 BIGTREE_TFT43_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT50_V3_0/BIGTREE_TFT50_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/BIGTREE_TFT50_V3_0/BIGTREE_TFT50_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT50_V3_0/BIGTREE_TFT50_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 64f22ff41be1b17934110d087cec35b5 BIGTREE_TFT50_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT70_V3_0/BIGTREE_TFT70_V3.0.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/BIGTREE_TFT70_V3_0/BIGTREE_TFT70_V3.0.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/BIGTREE_TFT70_V3_0/BIGTREE_TFT70_V3.0.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | 4141f9601991e6cd9bc0e512b7647ed1 BIGTREE_TFT70_V3.0.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/MKS_28_V1_0/MKSTFT28.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/MKS_28_V1_0/MKSTFT28.bin -------------------------------------------------------------------------------- /binaries/_debug/MKS_28_V1_0/MKSTFT28.bin.md5sum: -------------------------------------------------------------------------------- 1 | d2136a1d26a2f03b012efae8e73d02b2 MKSTFT28.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/MKS_32_V1_4/MKS_32_V1_4.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/MKS_32_V1_4/MKS_32_V1_4.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/MKS_32_V1_4/MKS_32_V1_4.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | d2136a1d26a2f03b012efae8e73d02b2 MKS_32_V1_4.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/MKS_32_V1_4_NOBL/MKS_32_V1_4.26.x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/MKS_32_V1_4_NOBL/MKS_32_V1_4.26.x.bin -------------------------------------------------------------------------------- /binaries/_debug/MKS_32_V1_4_NOBL/MKS_32_V1_4.26.x.bin.md5sum: -------------------------------------------------------------------------------- 1 | c1730aa1a6640c9303a039589d355abe MKS_32_V1_4.26.x.bin 2 | -------------------------------------------------------------------------------- /binaries/_debug/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/binaries/_debug/README.txt -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/Libraries/Startup/stm32f10x_cl/startup_stm32f10x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/Startup/stm32f10x_cl/startup_stm32f10x_cl.s -------------------------------------------------------------------------------- /src/Libraries/Startup/stm32f10x_hd/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/Startup/stm32f10x_hd/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /src/Libraries/Startup/stm32f2xx/startup_stm32f2xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/Startup/stm32f2xx/startup_stm32f2xx.s -------------------------------------------------------------------------------- /src/Libraries/Startup/stm32f40_41x/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/Startup/stm32f40_41x/startup_stm32f407xx.s -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM3/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM3/core_cm3.c -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM3/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM3/core_cm3.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM4/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM4/arm_common_tables.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM4/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM4/arm_const_structs.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM4/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM4/core_cm4.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM4/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM4/core_cmFunc.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM4/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM4/core_cmInstr.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM4/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM4/core_cmSimd.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM4/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM4/core_sc000.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/Core-CM4/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/Core-CM4/core_sc300.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/stm32f10x/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/stm32f10x/stm32f10x.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/stm32f10x/system_stm32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/stm32f10x/system_stm32f10x.c -------------------------------------------------------------------------------- /src/Libraries/cmsis/stm32f10x/system_stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/stm32f10x/system_stm32f10x.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/stm32f2xx/stm32f2xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/stm32f2xx/stm32f2xx.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/stm32f2xx/system_stm32f2xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/stm32f2xx/system_stm32f2xx.c -------------------------------------------------------------------------------- /src/Libraries/cmsis/stm32f2xx/system_stm32f2xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/stm32f2xx/system_stm32f2xx.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/stm32f4xx/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/stm32f4xx/stm32f4xx.h -------------------------------------------------------------------------------- /src/Libraries/cmsis/stm32f4xx/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/stm32f4xx/system_stm32f4xx.c -------------------------------------------------------------------------------- /src/Libraries/cmsis/stm32f4xx/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/cmsis/stm32f4xx/system_stm32f4xx.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/misc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_adc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_bkp.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_can.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_cec.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_crc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_dac.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_dbgmcu.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_dma.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_exti.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_flash.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_fsmc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_gpio.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_i2c.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_pwr.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_rcc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_rtc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_sdio.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_spi.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_tim.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_usart.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/inc/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/misc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_adc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_bkp.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_can.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_cec.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_crc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_dac.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_dbgmcu.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_dma.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_exti.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_fsmc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_gpio.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_iwdg.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_pwr.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_rcc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_rtc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_sdio.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_spi.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_tim.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/src/stm32f10x_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/src/stm32f10x_wwdg.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f10x/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f10x/stm32f10x_conf.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/misc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_adc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_can.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_crc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_cryp.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_dac.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_dbgmcu.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_dcmi.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_dma.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_exti.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_flash.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_fsmc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_gpio.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_hash.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_i2c.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_iwdg.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_pwr.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_rcc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_rng.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_rtc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_sdio.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_spi.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_syscfg.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_tim.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_usart.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/inc/stm32f2xx_wwdg.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/misc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_adc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_can.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_crc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_cryp.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_cryp_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_cryp_aes.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_cryp_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_cryp_des.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_cryp_tdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_cryp_tdes.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_dac.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_dbgmcu.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_dcmi.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_dma.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_exti.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_flash.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_fsmc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_gpio.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_hash.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_hash_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_hash_md5.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_hash_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_hash_sha1.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_i2c.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_iwdg.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_pwr.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_rcc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_rng.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_rtc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_sdio.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_spi.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_syscfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_syscfg.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_tim.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_usart.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/src/stm32f2xx_wwdg.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f2xx/stm32f2xx_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f2xx/stm32f2xx_conf.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/misc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_adc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_can.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_cec.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_crc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_cryp.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dac.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dbgmcu.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dcmi.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dfsdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dfsdm.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dma.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dma2d.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_dsi.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_exti.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_flash.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_flash_ramfunc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_fmpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_fmpi2c.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_fsmc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_gpio.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_hash.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_i2c.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_iwdg.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_lptim.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_ltdc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_pwr.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_qspi.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_rcc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_rng.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_rtc.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_sai.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_sdio.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_spdifrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_spdifrx.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_spi.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_syscfg.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_tim.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_usart.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/inc/stm32f4xx_wwdg.h -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/misc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_adc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_can.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cec.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_crc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cryp.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cryp_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cryp_aes.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cryp_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cryp_des.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cryp_tdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_cryp_tdes.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dac.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dbgmcu.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dcmi.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dfsdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dfsdm.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dma.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dma2d.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_dsi.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_exti.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_flash.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_flash_ramfunc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_fmpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_fmpi2c.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_fsmc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_gpio.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_hash.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_hash_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_hash_md5.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_hash_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_hash_sha1.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_i2c.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_iwdg.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_lptim.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_ltdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_ltdc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_pwr.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_qspi.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_rcc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_rng.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_rtc.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_sai.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_sdio.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_spdifrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_spdifrx.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_spi.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_syscfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_syscfg.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_tim.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_usart.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/src/stm32f4xx_wwdg.c -------------------------------------------------------------------------------- /src/Libraries/fwlib/stm32f4xx/stm32f4xx_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/Libraries/fwlib/stm32f4xx/stm32f4xx_conf.h -------------------------------------------------------------------------------- /src/User/API/Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/API/Colors.h -------------------------------------------------------------------------------- /src/User/API/UI/GUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/API/UI/GUI.c -------------------------------------------------------------------------------- /src/User/API/UI/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/API/UI/GUI.h -------------------------------------------------------------------------------- /src/User/Fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Fatfs/diskio.c -------------------------------------------------------------------------------- /src/User/Fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Fatfs/diskio.h -------------------------------------------------------------------------------- /src/User/Fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Fatfs/ff.c -------------------------------------------------------------------------------- /src/User/Fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Fatfs/ff.h -------------------------------------------------------------------------------- /src/User/Fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Fatfs/ffconf.h -------------------------------------------------------------------------------- /src/User/Fatfs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Fatfs/ffsystem.c -------------------------------------------------------------------------------- /src/User/Fatfs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Fatfs/ffunicode.c -------------------------------------------------------------------------------- /src/User/Fatfs/myfatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Fatfs/myfatfs.c -------------------------------------------------------------------------------- /src/User/Fatfs/myfatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Fatfs/myfatfs.h -------------------------------------------------------------------------------- /src/User/Hal/CircularQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/CircularQueue.h -------------------------------------------------------------------------------- /src/User/Hal/LCD_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/LCD_Init.c -------------------------------------------------------------------------------- /src/User/Hal/LCD_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/LCD_Init.h -------------------------------------------------------------------------------- /src/User/Hal/STM32Fxx_Pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/STM32Fxx_Pins.h -------------------------------------------------------------------------------- /src/User/Hal/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/sd.c -------------------------------------------------------------------------------- /src/User/Hal/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/sd.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/GPIO_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/GPIO_Init.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/GPIO_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/GPIO_Init.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/lcd.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/lcd.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/spi.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/spi.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/spi_slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/spi_slave.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/spi_slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/spi_slave.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/spi_slave_mks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/spi_slave_mks.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/timer_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/timer_pwm.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f10x/timer_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f10x/timer_pwm.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/GPIO_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/GPIO_Init.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/GPIO_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/GPIO_Init.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/lcd.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/lcd.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/spi.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/spi.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/spi_slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/spi_slave.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/spi_slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/spi_slave.h -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/timer_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/timer_pwm.c -------------------------------------------------------------------------------- /src/User/Hal/stm32f2_f4xx/timer_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Hal/stm32f2_f4xx/timer_pwm.h -------------------------------------------------------------------------------- /src/User/Variants/Resolution/TFT_320X240.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/Resolution/TFT_320X240.h -------------------------------------------------------------------------------- /src/User/Variants/Resolution/TFT_480X272.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/Resolution/TFT_480X272.h -------------------------------------------------------------------------------- /src/User/Variants/Resolution/TFT_480X320.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/Resolution/TFT_480X320.h -------------------------------------------------------------------------------- /src/User/Variants/Resolution/TFT_800X480.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/Resolution/TFT_800X480.h -------------------------------------------------------------------------------- /src/User/Variants/pin_MKS_TFT28_V1_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_MKS_TFT28_V1_0.h -------------------------------------------------------------------------------- /src/User/Variants/pin_MKS_TFT32_V1_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_MKS_TFT32_V1_4.h -------------------------------------------------------------------------------- /src/User/Variants/pin_TFT24_V1_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_TFT24_V1_1.h -------------------------------------------------------------------------------- /src/User/Variants/pin_TFT28_V3_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_TFT28_V3_0.h -------------------------------------------------------------------------------- /src/User/Variants/pin_TFT35_B1_V3_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_TFT35_B1_V3_0.h -------------------------------------------------------------------------------- /src/User/Variants/pin_TFT35_E3_V3_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_TFT35_E3_V3_0.h -------------------------------------------------------------------------------- /src/User/Variants/pin_TFT35_V3_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_TFT35_V3_0.h -------------------------------------------------------------------------------- /src/User/Variants/pin_TFT43_V3_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_TFT43_V3_0.h -------------------------------------------------------------------------------- /src/User/Variants/pin_TFT50_V3_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_TFT50_V3_0.h -------------------------------------------------------------------------------- /src/User/Variants/pin_TFT70_V3_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/pin_TFT70_V3_0.h -------------------------------------------------------------------------------- /src/User/Variants/variants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/Variants/variants.h -------------------------------------------------------------------------------- /src/User/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/delay.c -------------------------------------------------------------------------------- /src/User/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/delay.h -------------------------------------------------------------------------------- /src/User/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/encoder.c -------------------------------------------------------------------------------- /src/User/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/encoder.h -------------------------------------------------------------------------------- /src/User/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/features.h -------------------------------------------------------------------------------- /src/User/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/includes.h -------------------------------------------------------------------------------- /src/User/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/main.cpp -------------------------------------------------------------------------------- /src/User/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/timer.c -------------------------------------------------------------------------------- /src/User/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teeminus/NoTouchScreenFirmware/HEAD/src/User/timer.h --------------------------------------------------------------------------------