├── .gitmodules ├── Drivers ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32F1xx │ │ │ └── Include │ │ │ ├── stm32f107xc.h │ │ │ ├── stm32f1xx.h │ │ │ └── system_stm32f1xx.h │ └── Include │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armcc_V6.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm3.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ ├── core_sc000.h │ │ └── core_sc300.h └── STM32F1xx_HAL_Driver │ ├── Inc │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── stm32f1xx_hal.h │ ├── stm32f1xx_hal_cortex.h │ ├── stm32f1xx_hal_def.h │ ├── stm32f1xx_hal_dma.h │ ├── stm32f1xx_hal_dma_ex.h │ ├── stm32f1xx_hal_flash.h │ ├── stm32f1xx_hal_flash_ex.h │ ├── stm32f1xx_hal_gpio.h │ ├── stm32f1xx_hal_gpio_ex.h │ ├── stm32f1xx_hal_pwr.h │ ├── stm32f1xx_hal_rcc.h │ ├── stm32f1xx_hal_rcc_ex.h │ ├── stm32f1xx_hal_spi.h │ ├── stm32f1xx_hal_tim.h │ ├── stm32f1xx_hal_tim_ex.h │ └── stm32f1xx_hal_uart.h │ └── Src │ ├── .nfs0000000000e805a000000001 │ ├── stm32f1xx_hal.c │ ├── stm32f1xx_hal_cortex.c │ ├── stm32f1xx_hal_dma.c │ ├── stm32f1xx_hal_flash.c │ ├── stm32f1xx_hal_flash_ex.c │ ├── stm32f1xx_hal_gpio.c │ ├── stm32f1xx_hal_gpio_ex.c │ ├── stm32f1xx_hal_pwr.c │ ├── stm32f1xx_hal_rcc.c │ ├── stm32f1xx_hal_rcc_ex.c │ ├── stm32f1xx_hal_spi.c │ ├── stm32f1xx_hal_spi_ex.c │ ├── stm32f1xx_hal_tim.c │ ├── stm32f1xx_hal_tim_ex.c │ └── stm32f1xx_hal_uart.c ├── Inc ├── DMA_CIRCULAR.h ├── Display.h ├── FreeRTOSConfig.h ├── ILI9328.h ├── UTFT.h ├── ecv.h ├── lvgl ├── main.h ├── screens.h ├── serialCommands.h ├── stm32f1xx_hal_conf.h ├── stm32f1xx_it.h ├── tft_drivers │ ├── cpld │ │ ├── initlcd.h │ │ └── setxy.h │ ├── hx8340b │ │ ├── 8 │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ │ └── s │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ ├── hx8347a │ │ ├── initlcd.h │ │ └── setxy.h │ ├── hx8352a │ │ ├── initlcd.h │ │ └── setxy.h │ ├── hx8353c │ │ ├── initlcd.h │ │ └── setxy.h │ ├── ili9325c │ │ ├── initlcd.h │ │ └── setxy.h │ ├── ili9325d │ │ ├── alt │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ │ └── default │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ ├── ili9327 │ │ ├── initlcd.h │ │ └── setxy.h │ ├── ili9341 │ │ ├── 8 │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ │ ├── 16 │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ │ ├── s4p │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ │ └── s5p │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ ├── ili9481 │ │ ├── initlcd.h │ │ └── setxy.h │ ├── ili9486 │ │ ├── initlcd.h │ │ └── setxy.h │ ├── pcf8833 │ │ ├── initlcd.h │ │ └── setxy.h │ ├── r61581 │ │ ├── initlcd.h │ │ └── setxy.h │ ├── s1d19122 │ │ ├── initlcd.h │ │ └── setxy.h │ ├── s6d0164 │ │ ├── initlcd.h │ │ └── setxy.h │ ├── s6d1121 │ │ ├── initlcd.h │ │ └── setxy.h │ ├── ssd1289 │ │ ├── initlcd.h │ │ └── setxy.h │ ├── ssd1963 │ │ ├── 480 │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ │ ├── 800 │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ │ └── 800alt │ │ │ ├── initlcd.h │ │ │ └── setxy.h │ └── st7735 │ │ └── std │ │ ├── initlcd.h │ │ └── setxy.h └── xpt2046.h ├── Middlewares └── Third_Party │ └── FreeRTOS │ └── Source │ ├── CMSIS_RTOS │ ├── cmsis_os.c │ └── cmsis_os.h │ ├── croutine.c │ ├── event_groups.c │ ├── include │ ├── FreeRTOS.h │ ├── FreeRTOSConfig_template.h │ ├── StackMacros.h │ ├── croutine.h │ ├── deprecated_definitions.h │ ├── event_groups.h │ ├── list.h │ ├── mpu_prototypes.h │ ├── mpu_wrappers.h │ ├── portable.h │ ├── projdefs.h │ ├── queue.h │ ├── semphr.h │ ├── task.h │ └── timers.h │ ├── list.c │ ├── portable │ ├── GCC │ │ └── ARM_CM3 │ │ │ ├── port.c │ │ │ └── portmacro.h │ └── MemMang │ │ └── heap_4.c │ ├── queue.c │ ├── tasks.c │ └── timers.c ├── OctoScreen.ioc ├── README.md ├── SW4STM32 ├── OctoScreen │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── language.settings.xml │ │ └── org.eclipse.cdt.codan.core.prefs │ ├── Application │ │ └── User │ │ │ ├── DMA_CIRCULAR.c │ │ │ ├── Display.c │ │ │ ├── UTFT.c │ │ │ ├── bed_img.c │ │ │ ├── lv_conf.h │ │ │ ├── nozzle_img.c │ │ │ ├── roboto_18.c │ │ │ ├── roboto_condensed_18.c │ │ │ ├── roboto_condensed_20.c │ │ │ ├── screens.c │ │ │ ├── serialCommands.c │ │ │ ├── xpt2046.c │ │ │ └── z_height_img.c │ ├── OctoScreen Run.cfg │ ├── OctoScreen.xml │ └── STM32F107VCTx_FLASH.ld └── startup_stm32f107xc.s ├── Src ├── freertos.c ├── main.c ├── stm32f1xx_hal_msp.c ├── stm32f1xx_hal_timebase_TIM.c ├── stm32f1xx_it.c └── system_stm32f1xx.c ├── octoprint_plugin └── octoscreen_plugin.py └── screenshots ├── Files.png ├── Home.png ├── Move.png └── Temperature.png /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/.gitmodules -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f107xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f107xc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_spi.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/.nfs0000000000e805a000000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/.nfs0000000000e805a000000001 -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c -------------------------------------------------------------------------------- /Inc/DMA_CIRCULAR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/DMA_CIRCULAR.h -------------------------------------------------------------------------------- /Inc/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/Display.h -------------------------------------------------------------------------------- /Inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /Inc/ILI9328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/ILI9328.h -------------------------------------------------------------------------------- /Inc/UTFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/UTFT.h -------------------------------------------------------------------------------- /Inc/ecv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/ecv.h -------------------------------------------------------------------------------- /Inc/lvgl: -------------------------------------------------------------------------------- 1 | ../SW4STM32/OctoScreen/Application/User/lvgl -------------------------------------------------------------------------------- /Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/main.h -------------------------------------------------------------------------------- /Inc/screens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/screens.h -------------------------------------------------------------------------------- /Inc/serialCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/serialCommands.h -------------------------------------------------------------------------------- /Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /Inc/tft_drivers/cpld/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/cpld/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/cpld/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/cpld/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8340b/8/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8340b/8/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8340b/8/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8340b/8/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8340b/s/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8340b/s/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8340b/s/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8340b/s/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8347a/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8347a/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8347a/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8347a/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8352a/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8352a/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8352a/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8352a/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8353c/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8353c/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/hx8353c/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/hx8353c/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9325c/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9325c/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9325c/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9325c/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9325d/alt/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9325d/alt/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9325d/alt/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9325d/alt/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9325d/default/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9325d/default/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9325d/default/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9325d/default/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9327/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9327/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9327/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9327/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9341/16/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9341/16/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9341/16/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9341/16/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9341/8/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9341/8/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9341/8/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9341/8/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9341/s4p/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9341/s4p/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9341/s4p/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9341/s4p/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9341/s5p/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9341/s5p/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9341/s5p/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9341/s5p/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9481/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9481/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9481/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9481/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9486/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9486/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ili9486/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ili9486/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/pcf8833/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/pcf8833/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/pcf8833/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/pcf8833/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/r61581/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/r61581/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/r61581/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/r61581/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/s1d19122/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/s1d19122/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/s1d19122/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/s1d19122/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/s6d0164/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/s6d0164/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/s6d0164/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/s6d0164/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/s6d1121/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/s6d1121/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/s6d1121/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/s6d1121/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ssd1289/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ssd1289/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ssd1289/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ssd1289/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ssd1963/480/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ssd1963/480/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ssd1963/480/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ssd1963/480/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ssd1963/800/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ssd1963/800/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ssd1963/800/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ssd1963/800/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ssd1963/800alt/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ssd1963/800alt/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/ssd1963/800alt/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/ssd1963/800alt/setxy.h -------------------------------------------------------------------------------- /Inc/tft_drivers/st7735/std/initlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/st7735/std/initlcd.h -------------------------------------------------------------------------------- /Inc/tft_drivers/st7735/std/setxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/tft_drivers/st7735/std/setxy.h -------------------------------------------------------------------------------- /Inc/xpt2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Inc/xpt2046.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/croutine.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOSConfig_template.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/list.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/task.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/list.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM3/port.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM3/portmacro.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/queue.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/tasks.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Middlewares/Third_Party/FreeRTOS/Source/timers.c -------------------------------------------------------------------------------- /OctoScreen.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/OctoScreen.ioc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/README.md -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/.cproject -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/.gitignore: -------------------------------------------------------------------------------- 1 | Debug/ 2 | /Release/ 3 | -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/.project -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/.settings/language.settings.xml -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/DMA_CIRCULAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/DMA_CIRCULAR.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/Display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/Display.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/UTFT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/UTFT.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/bed_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/bed_img.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/lv_conf.h -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/nozzle_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/nozzle_img.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/roboto_18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/roboto_18.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/roboto_condensed_18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/roboto_condensed_18.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/roboto_condensed_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/roboto_condensed_20.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/screens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/screens.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/serialCommands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/serialCommands.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/xpt2046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/xpt2046.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/Application/User/z_height_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/Application/User/z_height_img.c -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/OctoScreen Run.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/OctoScreen Run.cfg -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/OctoScreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/OctoScreen.xml -------------------------------------------------------------------------------- /SW4STM32/OctoScreen/STM32F107VCTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/OctoScreen/STM32F107VCTx_FLASH.ld -------------------------------------------------------------------------------- /SW4STM32/startup_stm32f107xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/SW4STM32/startup_stm32f107xc.s -------------------------------------------------------------------------------- /Src/freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Src/freertos.c -------------------------------------------------------------------------------- /Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Src/main.c -------------------------------------------------------------------------------- /Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /Src/stm32f1xx_hal_timebase_TIM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Src/stm32f1xx_hal_timebase_TIM.c -------------------------------------------------------------------------------- /Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /octoprint_plugin/octoscreen_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/octoprint_plugin/octoscreen_plugin.py -------------------------------------------------------------------------------- /screenshots/Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/screenshots/Files.png -------------------------------------------------------------------------------- /screenshots/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/screenshots/Home.png -------------------------------------------------------------------------------- /screenshots/Move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/screenshots/Move.png -------------------------------------------------------------------------------- /screenshots/Temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidddy/OctoScreen/HEAD/screenshots/Temperature.png --------------------------------------------------------------------------------