├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings └── language.settings.xml ├── Core ├── Inc │ ├── FreeRTOSConfig.h │ ├── main.h │ ├── stm32f7xx_hal_conf.h │ └── stm32f7xx_it.h ├── Src │ ├── freertos.c │ ├── main.c │ ├── stm32f7xx_hal_msp.c │ ├── stm32f7xx_hal_timebase_tim.c │ ├── stm32f7xx_it.c │ ├── syscalls.c │ ├── sysmem.c │ └── system_stm32f7xx.c └── Startup │ └── startup_stm32f746nghx.s ├── Drivers ├── BSP │ ├── stm32746g_discovery_qspi.c │ └── stm32746g_discovery_qspi.h ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32F7xx │ │ │ └── Include │ │ │ ├── stm32f746xx.h │ │ │ ├── stm32f7xx.h │ │ │ └── system_stm32f7xx.h │ └── Include │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm1.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h ├── Components │ ├── Common │ │ └── ts.h │ ├── ft5336 │ │ ├── Release_Notes.html │ │ ├── ft5336.c │ │ └── ft5336.h │ └── n25q128a │ │ ├── Release_Notes.html │ │ └── n25q128a.h └── STM32F7xx_HAL_Driver │ ├── Inc │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── stm32f7xx_hal.h │ ├── stm32f7xx_hal_cortex.h │ ├── stm32f7xx_hal_crc.h │ ├── stm32f7xx_hal_crc_ex.h │ ├── stm32f7xx_hal_def.h │ ├── stm32f7xx_hal_dma.h │ ├── stm32f7xx_hal_dma2d.h │ ├── stm32f7xx_hal_dma_ex.h │ ├── stm32f7xx_hal_dsi.h │ ├── stm32f7xx_hal_exti.h │ ├── stm32f7xx_hal_flash.h │ ├── stm32f7xx_hal_flash_ex.h │ ├── stm32f7xx_hal_gpio.h │ ├── stm32f7xx_hal_gpio_ex.h │ ├── stm32f7xx_hal_i2c.h │ ├── stm32f7xx_hal_i2c_ex.h │ ├── stm32f7xx_hal_ltdc.h │ ├── stm32f7xx_hal_ltdc_ex.h │ ├── stm32f7xx_hal_pwr.h │ ├── stm32f7xx_hal_pwr_ex.h │ ├── stm32f7xx_hal_qspi.h │ ├── stm32f7xx_hal_rcc.h │ ├── stm32f7xx_hal_rcc_ex.h │ ├── stm32f7xx_hal_sdram.h │ ├── stm32f7xx_hal_tim.h │ ├── stm32f7xx_hal_tim_ex.h │ └── stm32f7xx_ll_fmc.h │ └── Src │ ├── stm32f7xx_hal.c │ ├── stm32f7xx_hal_cortex.c │ ├── stm32f7xx_hal_crc.c │ ├── stm32f7xx_hal_crc_ex.c │ ├── stm32f7xx_hal_dma.c │ ├── stm32f7xx_hal_dma2d.c │ ├── stm32f7xx_hal_dma_ex.c │ ├── stm32f7xx_hal_dsi.c │ ├── stm32f7xx_hal_exti.c │ ├── stm32f7xx_hal_flash.c │ ├── stm32f7xx_hal_flash_ex.c │ ├── stm32f7xx_hal_gpio.c │ ├── stm32f7xx_hal_i2c.c │ ├── stm32f7xx_hal_i2c_ex.c │ ├── stm32f7xx_hal_ltdc.c │ ├── stm32f7xx_hal_ltdc_ex.c │ ├── stm32f7xx_hal_pwr.c │ ├── stm32f7xx_hal_pwr_ex.c │ ├── stm32f7xx_hal_qspi.c │ ├── stm32f7xx_hal_rcc.c │ ├── stm32f7xx_hal_rcc_ex.c │ ├── stm32f7xx_hal_sdram.c │ ├── stm32f7xx_hal_tim.c │ ├── stm32f7xx_hal_tim_ex.c │ └── stm32f7xx_ll_fmc.c ├── Middlewares ├── ST │ └── touchgfx │ │ ├── framework │ │ ├── include │ │ │ ├── common │ │ │ │ ├── AbstractPartition.hpp │ │ │ │ ├── Meta.hpp │ │ │ │ ├── Partition.hpp │ │ │ │ └── TouchGFXInit.hpp │ │ │ ├── mvp │ │ │ │ ├── MVPApplication.hpp │ │ │ │ ├── MVPHeap.hpp │ │ │ │ ├── Presenter.hpp │ │ │ │ └── View.hpp │ │ │ ├── platform │ │ │ │ ├── core │ │ │ │ │ └── MCUInstrumentation.hpp │ │ │ │ ├── driver │ │ │ │ │ ├── button │ │ │ │ │ │ └── ButtonController.hpp │ │ │ │ │ ├── i2c │ │ │ │ │ │ └── I2C.hpp │ │ │ │ │ ├── lcd │ │ │ │ │ │ ├── LCD16bpp.hpp │ │ │ │ │ │ ├── LCD16bppSerialFlash.hpp │ │ │ │ │ │ ├── LCD1bpp.hpp │ │ │ │ │ │ ├── LCD24bpp.hpp │ │ │ │ │ │ ├── LCD2bpp.hpp │ │ │ │ │ │ ├── LCD32bpp.hpp │ │ │ │ │ │ ├── LCD4bpp.hpp │ │ │ │ │ │ ├── LCD8bpp_ABGR2222.hpp │ │ │ │ │ │ ├── LCD8bpp_ARGB2222.hpp │ │ │ │ │ │ ├── LCD8bpp_BGRA2222.hpp │ │ │ │ │ │ └── LCD8bpp_RGBA2222.hpp │ │ │ │ │ └── touch │ │ │ │ │ │ ├── I2CTouchController.hpp │ │ │ │ │ │ ├── NoTouchController.hpp │ │ │ │ │ │ ├── SDL2TouchController.hpp │ │ │ │ │ │ ├── SDLTouchController.hpp │ │ │ │ │ │ ├── ST1232TouchController.hpp │ │ │ │ │ │ └── TouchController.hpp │ │ │ │ └── hal │ │ │ │ │ └── simulator │ │ │ │ │ └── sdl2 │ │ │ │ │ ├── HALSDL2.hpp │ │ │ │ │ └── vendor │ │ │ │ │ └── SDL2 │ │ │ │ │ ├── SDL.h │ │ │ │ │ ├── SDL_assert.h │ │ │ │ │ ├── SDL_atomic.h │ │ │ │ │ ├── SDL_audio.h │ │ │ │ │ ├── SDL_bits.h │ │ │ │ │ ├── SDL_blendmode.h │ │ │ │ │ ├── SDL_clipboard.h │ │ │ │ │ ├── SDL_config.h │ │ │ │ │ ├── SDL_config.h.cmake │ │ │ │ │ ├── SDL_config.h.in │ │ │ │ │ ├── SDL_config_android.h │ │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ │ ├── SDL_config_psp.h │ │ │ │ │ ├── SDL_config_windows.h │ │ │ │ │ ├── SDL_config_winrt.h │ │ │ │ │ ├── SDL_config_wiz.h │ │ │ │ │ ├── SDL_copying.h │ │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ │ ├── SDL_egl.h │ │ │ │ │ ├── SDL_endian.h │ │ │ │ │ ├── SDL_error.h │ │ │ │ │ ├── SDL_events.h │ │ │ │ │ ├── SDL_filesystem.h │ │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ │ ├── SDL_gesture.h │ │ │ │ │ ├── SDL_haptic.h │ │ │ │ │ ├── SDL_hints.h │ │ │ │ │ ├── SDL_image.h │ │ │ │ │ ├── SDL_joystick.h │ │ │ │ │ ├── SDL_keyboard.h │ │ │ │ │ ├── SDL_keycode.h │ │ │ │ │ ├── SDL_loadso.h │ │ │ │ │ ├── SDL_log.h │ │ │ │ │ ├── SDL_main.h │ │ │ │ │ ├── SDL_messagebox.h │ │ │ │ │ ├── SDL_mouse.h │ │ │ │ │ ├── SDL_mutex.h │ │ │ │ │ ├── SDL_name.h │ │ │ │ │ ├── SDL_opengl.h │ │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ │ ├── SDL_opengles.h │ │ │ │ │ ├── SDL_opengles2.h │ │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ │ ├── SDL_pixels.h │ │ │ │ │ ├── SDL_platform.h │ │ │ │ │ ├── SDL_power.h │ │ │ │ │ ├── SDL_quit.h │ │ │ │ │ ├── SDL_rect.h │ │ │ │ │ ├── SDL_render.h │ │ │ │ │ ├── SDL_revision.h │ │ │ │ │ ├── SDL_rwops.h │ │ │ │ │ ├── SDL_scancode.h │ │ │ │ │ ├── SDL_shape.h │ │ │ │ │ ├── SDL_stdinc.h │ │ │ │ │ ├── SDL_surface.h │ │ │ │ │ ├── SDL_system.h │ │ │ │ │ ├── SDL_syswm.h │ │ │ │ │ ├── SDL_test.h │ │ │ │ │ ├── SDL_test_assert.h │ │ │ │ │ ├── SDL_test_common.h │ │ │ │ │ ├── SDL_test_compare.h │ │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ │ ├── SDL_test_font.h │ │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ │ ├── SDL_test_harness.h │ │ │ │ │ ├── SDL_test_images.h │ │ │ │ │ ├── SDL_test_log.h │ │ │ │ │ ├── SDL_test_md5.h │ │ │ │ │ ├── SDL_test_random.h │ │ │ │ │ ├── SDL_thread.h │ │ │ │ │ ├── SDL_timer.h │ │ │ │ │ ├── SDL_touch.h │ │ │ │ │ ├── SDL_types.h │ │ │ │ │ ├── SDL_version.h │ │ │ │ │ ├── SDL_video.h │ │ │ │ │ ├── begin_code.h │ │ │ │ │ └── close_code.h │ │ │ └── touchgfx │ │ │ │ ├── Application.hpp │ │ │ │ ├── Bitmap.hpp │ │ │ │ ├── Callback.hpp │ │ │ │ ├── Color.hpp │ │ │ │ ├── ConstFont.hpp │ │ │ │ ├── Drawable.hpp │ │ │ │ ├── EasingEquations.hpp │ │ │ │ ├── Event.hpp │ │ │ │ ├── Font.hpp │ │ │ │ ├── FontManager.hpp │ │ │ │ ├── InternalFlashFont.hpp │ │ │ │ ├── JSMOCHelper.hpp │ │ │ │ ├── Math3D.hpp │ │ │ │ ├── Screen.hpp │ │ │ │ ├── TextProvider.hpp │ │ │ │ ├── Texts.hpp │ │ │ │ ├── TextureMapTypes.hpp │ │ │ │ ├── TypedText.hpp │ │ │ │ ├── UIEventListener.hpp │ │ │ │ ├── Unicode.hpp │ │ │ │ ├── Utils.hpp │ │ │ │ ├── canvas_widget_renderer │ │ │ │ ├── CanvasWidgetRenderer.hpp │ │ │ │ ├── Cell.hpp │ │ │ │ ├── Outline.hpp │ │ │ │ ├── Rasterizer.hpp │ │ │ │ ├── Renderer.hpp │ │ │ │ ├── RenderingBuffer.hpp │ │ │ │ ├── Scanline.hpp │ │ │ │ └── license.txt │ │ │ │ ├── containers │ │ │ │ ├── CacheableContainer.hpp │ │ │ │ ├── Container.hpp │ │ │ │ ├── ListLayout.hpp │ │ │ │ ├── ModalWindow.hpp │ │ │ │ ├── ScrollableContainer.hpp │ │ │ │ ├── SlideMenu.hpp │ │ │ │ ├── Slider.hpp │ │ │ │ ├── SwipeContainer.hpp │ │ │ │ ├── ZoomAnimationImage.hpp │ │ │ │ ├── buttons │ │ │ │ │ ├── AbstractButtonContainer.hpp │ │ │ │ │ ├── AnimatedImageButtonStyle.hpp │ │ │ │ │ ├── BoxWithBorderButtonStyle.hpp │ │ │ │ │ ├── Buttons.hpp │ │ │ │ │ ├── ClickButtonTrigger.hpp │ │ │ │ │ ├── IconButtonStyle.hpp │ │ │ │ │ ├── ImageButtonStyle.hpp │ │ │ │ │ ├── RepeatButtonTrigger.hpp │ │ │ │ │ ├── TextButtonStyle.hpp │ │ │ │ │ ├── TiledImageButtonStyle.hpp │ │ │ │ │ ├── ToggleButtonTrigger.hpp │ │ │ │ │ ├── TouchButtonTrigger.hpp │ │ │ │ │ ├── TwoWildcardTextButtonStyle.hpp │ │ │ │ │ └── WildcardTextButtonStyle.hpp │ │ │ │ ├── clock │ │ │ │ │ ├── AbstractClock.hpp │ │ │ │ │ ├── AnalogClock.hpp │ │ │ │ │ └── DigitalClock.hpp │ │ │ │ ├── progress_indicators │ │ │ │ │ ├── AbstractDirectionProgress.hpp │ │ │ │ │ ├── AbstractProgressIndicator.hpp │ │ │ │ │ ├── BoxProgress.hpp │ │ │ │ │ ├── CircleProgress.hpp │ │ │ │ │ ├── ImageProgress.hpp │ │ │ │ │ ├── LineProgress.hpp │ │ │ │ │ └── TextProgress.hpp │ │ │ │ └── scrollers │ │ │ │ │ ├── DrawableList.hpp │ │ │ │ │ ├── ScrollBase.hpp │ │ │ │ │ ├── ScrollList.hpp │ │ │ │ │ ├── ScrollWheel.hpp │ │ │ │ │ ├── ScrollWheelBase.hpp │ │ │ │ │ └── ScrollWheelWithSelectionStyle.hpp │ │ │ │ ├── events │ │ │ │ ├── ClickEvent.hpp │ │ │ │ ├── DragEvent.hpp │ │ │ │ └── GestureEvent.hpp │ │ │ │ ├── hal │ │ │ │ ├── Atomic.hpp │ │ │ │ ├── BlitOp.hpp │ │ │ │ ├── BoardConfiguration.hpp │ │ │ │ ├── Buttons.hpp │ │ │ │ ├── Config.hpp │ │ │ │ ├── DMA.hpp │ │ │ │ ├── FlashDataReader.hpp │ │ │ │ ├── FrameBufferAllocator.hpp │ │ │ │ ├── GPIO.hpp │ │ │ │ ├── Gestures.hpp │ │ │ │ ├── HAL.hpp │ │ │ │ ├── LED.hpp │ │ │ │ ├── NoDMA.hpp │ │ │ │ ├── OSWrappers.hpp │ │ │ │ └── Types.hpp │ │ │ │ ├── lcd │ │ │ │ └── LCD.hpp │ │ │ │ ├── mixins │ │ │ │ ├── ClickListener.hpp │ │ │ │ ├── Draggable.hpp │ │ │ │ ├── FadeAnimator.hpp │ │ │ │ ├── MoveAnimator.hpp │ │ │ │ ├── PreRenderable.hpp │ │ │ │ └── Snapper.hpp │ │ │ │ ├── transforms │ │ │ │ ├── DisplayTransformation.hpp │ │ │ │ └── TouchCalibration.hpp │ │ │ │ ├── transitions │ │ │ │ ├── CoverTransition.hpp │ │ │ │ ├── NoTransition.hpp │ │ │ │ ├── SlideTransition.hpp │ │ │ │ └── Transition.hpp │ │ │ │ └── widgets │ │ │ │ ├── AbstractButton.hpp │ │ │ │ ├── AnimatedImage.hpp │ │ │ │ ├── AnimationTextureMapper.hpp │ │ │ │ ├── Box.hpp │ │ │ │ ├── BoxWithBorder.hpp │ │ │ │ ├── Button.hpp │ │ │ │ ├── ButtonWithIcon.hpp │ │ │ │ ├── ButtonWithLabel.hpp │ │ │ │ ├── Image.hpp │ │ │ │ ├── Keyboard.hpp │ │ │ │ ├── PixelDataWidget.hpp │ │ │ │ ├── RadioButton.hpp │ │ │ │ ├── RadioButtonGroup.hpp │ │ │ │ ├── RepeatButton.hpp │ │ │ │ ├── ScalableImage.hpp │ │ │ │ ├── SnapshotWidget.hpp │ │ │ │ ├── TextArea.hpp │ │ │ │ ├── TextAreaWithWildcard.hpp │ │ │ │ ├── TextureMapper.hpp │ │ │ │ ├── TiledImage.hpp │ │ │ │ ├── ToggleButton.hpp │ │ │ │ ├── TouchArea.hpp │ │ │ │ ├── Widget.hpp │ │ │ │ └── canvas │ │ │ │ ├── AbstractPainter.hpp │ │ │ │ ├── AbstractPainterABGR2222.hpp │ │ │ │ ├── AbstractPainterARGB2222.hpp │ │ │ │ ├── AbstractPainterARGB8888.hpp │ │ │ │ ├── AbstractPainterBGRA2222.hpp │ │ │ │ ├── AbstractPainterBW.hpp │ │ │ │ ├── AbstractPainterGRAY2.hpp │ │ │ │ ├── AbstractPainterGRAY4.hpp │ │ │ │ ├── AbstractPainterRGB565.hpp │ │ │ │ ├── AbstractPainterRGB888.hpp │ │ │ │ ├── AbstractPainterRGBA2222.hpp │ │ │ │ ├── AbstractShape.hpp │ │ │ │ ├── CWRUtil.hpp │ │ │ │ ├── Canvas.hpp │ │ │ │ ├── CanvasWidget.hpp │ │ │ │ ├── Circle.hpp │ │ │ │ ├── Line.hpp │ │ │ │ ├── PainterABGR2222.hpp │ │ │ │ ├── PainterABGR2222Bitmap.hpp │ │ │ │ ├── PainterARGB2222.hpp │ │ │ │ ├── PainterARGB2222Bitmap.hpp │ │ │ │ ├── PainterARGB8888.hpp │ │ │ │ ├── PainterARGB8888Bitmap.hpp │ │ │ │ ├── PainterARGB8888L8Bitmap.hpp │ │ │ │ ├── PainterBGRA2222.hpp │ │ │ │ ├── PainterBGRA2222Bitmap.hpp │ │ │ │ ├── PainterBW.hpp │ │ │ │ ├── PainterBWBitmap.hpp │ │ │ │ ├── PainterGRAY2.hpp │ │ │ │ ├── PainterGRAY2Bitmap.hpp │ │ │ │ ├── PainterGRAY4.hpp │ │ │ │ ├── PainterGRAY4Bitmap.hpp │ │ │ │ ├── PainterRGB565.hpp │ │ │ │ ├── PainterRGB565Bitmap.hpp │ │ │ │ ├── PainterRGB565L8Bitmap.hpp │ │ │ │ ├── PainterRGB888.hpp │ │ │ │ ├── PainterRGB888Bitmap.hpp │ │ │ │ ├── PainterRGB888L8Bitmap.hpp │ │ │ │ ├── PainterRGBA2222.hpp │ │ │ │ ├── PainterRGBA2222Bitmap.hpp │ │ │ │ └── Shape.hpp │ │ ├── source │ │ │ ├── platform │ │ │ │ ├── driver │ │ │ │ │ └── touch │ │ │ │ │ │ ├── SDL2TouchController.cpp │ │ │ │ │ │ └── ST1232TouchController.cpp │ │ │ │ └── hal │ │ │ │ │ └── simulator │ │ │ │ │ └── sdl2 │ │ │ │ │ ├── HALSDL2.cpp │ │ │ │ │ ├── HALSDL2_icon.cpp │ │ │ │ │ └── OSWrappers.cpp │ │ │ └── touchgfx │ │ │ │ ├── containers │ │ │ │ ├── CacheableContainer.cpp │ │ │ │ ├── Container.cpp │ │ │ │ ├── ListLayout.cpp │ │ │ │ ├── ModalWindow.cpp │ │ │ │ ├── ScrollableContainer.cpp │ │ │ │ ├── SlideMenu.cpp │ │ │ │ ├── Slider.cpp │ │ │ │ ├── SwipeContainer.cpp │ │ │ │ ├── ZoomAnimationImage.cpp │ │ │ │ ├── clock │ │ │ │ │ ├── AbstractClock.cpp │ │ │ │ │ ├── AnalogClock.cpp │ │ │ │ │ └── DigitalClock.cpp │ │ │ │ ├── progress_indicators │ │ │ │ │ ├── AbstractDirectionProgress.cpp │ │ │ │ │ ├── AbstractProgressIndicator.cpp │ │ │ │ │ ├── BoxProgress.cpp │ │ │ │ │ ├── CircleProgress.cpp │ │ │ │ │ ├── ImageProgress.cpp │ │ │ │ │ ├── LineProgress.cpp │ │ │ │ │ └── TextProgress.cpp │ │ │ │ └── scrollers │ │ │ │ │ ├── DrawableList.cpp │ │ │ │ │ ├── ScrollBase.cpp │ │ │ │ │ ├── ScrollList.cpp │ │ │ │ │ ├── ScrollWheel.cpp │ │ │ │ │ ├── ScrollWheelBase.cpp │ │ │ │ │ └── ScrollWheelWithSelectionStyle.cpp │ │ │ │ └── widgets │ │ │ │ ├── AbstractButton.cpp │ │ │ │ ├── AnimatedImage.cpp │ │ │ │ ├── AnimationTextureMapper.cpp │ │ │ │ ├── Box.cpp │ │ │ │ ├── BoxWithBorder.cpp │ │ │ │ ├── Button.cpp │ │ │ │ ├── ButtonWithIcon.cpp │ │ │ │ ├── ButtonWithLabel.cpp │ │ │ │ ├── Image.cpp │ │ │ │ ├── Keyboard.cpp │ │ │ │ ├── PixelDataWidget.cpp │ │ │ │ ├── RadioButton.cpp │ │ │ │ ├── RepeatButton.cpp │ │ │ │ ├── ScalableImage.cpp │ │ │ │ ├── SnapshotWidget.cpp │ │ │ │ ├── TextArea.cpp │ │ │ │ ├── TextAreaWithWildcard.cpp │ │ │ │ ├── TextureMapper.cpp │ │ │ │ ├── TiledImage.cpp │ │ │ │ ├── ToggleButton.cpp │ │ │ │ ├── TouchArea.cpp │ │ │ │ └── canvas │ │ │ │ ├── AbstractPainter.cpp │ │ │ │ ├── AbstractPainterABGR2222.cpp │ │ │ │ ├── AbstractPainterARGB2222.cpp │ │ │ │ ├── AbstractPainterARGB8888.cpp │ │ │ │ ├── AbstractPainterBGRA2222.cpp │ │ │ │ ├── AbstractPainterBW.cpp │ │ │ │ ├── AbstractPainterGRAY2.cpp │ │ │ │ ├── AbstractPainterGRAY4.cpp │ │ │ │ ├── AbstractPainterRGB565.cpp │ │ │ │ ├── AbstractPainterRGB888.cpp │ │ │ │ ├── AbstractPainterRGBA2222.cpp │ │ │ │ ├── AbstractShape.cpp │ │ │ │ ├── Canvas.cpp │ │ │ │ ├── CanvasWidget.cpp │ │ │ │ ├── Circle.cpp │ │ │ │ ├── Line.cpp │ │ │ │ ├── PainterABGR2222.cpp │ │ │ │ ├── PainterABGR2222Bitmap.cpp │ │ │ │ ├── PainterARGB2222.cpp │ │ │ │ ├── PainterARGB2222Bitmap.cpp │ │ │ │ ├── PainterARGB8888.cpp │ │ │ │ ├── PainterARGB8888Bitmap.cpp │ │ │ │ ├── PainterARGB8888L8Bitmap.cpp │ │ │ │ ├── PainterBGRA2222.cpp │ │ │ │ ├── PainterBGRA2222Bitmap.cpp │ │ │ │ ├── PainterBW.cpp │ │ │ │ ├── PainterBWBitmap.cpp │ │ │ │ ├── PainterGRAY2.cpp │ │ │ │ ├── PainterGRAY2Bitmap.cpp │ │ │ │ ├── PainterGRAY4.cpp │ │ │ │ ├── PainterGRAY4Bitmap.cpp │ │ │ │ ├── PainterRGB565.cpp │ │ │ │ ├── PainterRGB565Bitmap.cpp │ │ │ │ ├── PainterRGB565L8Bitmap.cpp │ │ │ │ ├── PainterRGB888.cpp │ │ │ │ ├── PainterRGB888Bitmap.cpp │ │ │ │ ├── PainterRGB888L8Bitmap.cpp │ │ │ │ ├── PainterRGBA2222.cpp │ │ │ │ └── PainterRGBA2222Bitmap.cpp │ │ └── tools │ │ │ ├── fontconvert │ │ │ └── build │ │ │ │ ├── linux │ │ │ │ └── fontconvert.out │ │ │ │ └── win │ │ │ │ └── fontconvert.out │ │ │ ├── imageconvert │ │ │ └── build │ │ │ │ ├── linux │ │ │ │ └── imageconvert.out │ │ │ │ ├── msvs │ │ │ │ └── ImageConvert.exe │ │ │ │ └── win │ │ │ │ └── imageconvert.out │ │ │ └── textconvert │ │ │ ├── Templates │ │ │ ├── ApplicationFontProvider.cpp.temp │ │ │ ├── ApplicationFontProvider.hpp.temp │ │ │ ├── CachedFont.cpp.temp │ │ │ ├── CachedFont.hpp.temp │ │ │ ├── FontCache.cpp.temp │ │ │ ├── FontCache.hpp.temp │ │ │ ├── GeneratedFont.cpp.temp │ │ │ ├── GeneratedFont.hpp.temp │ │ │ ├── LanguageXX.cpp.temp │ │ │ ├── TextKeysAndLanguages.hpp.temp │ │ │ ├── Texts.cpp.temp │ │ │ ├── TypedTextDatabase.cpp.temp │ │ │ └── TypedTextDatabase.hpp.temp │ │ │ ├── lib │ │ │ ├── emitters │ │ │ │ ├── application_font_provider_cpp.rb │ │ │ │ ├── application_font_provider_hpp.rb │ │ │ │ ├── cached_font_cpp.rb │ │ │ │ ├── cached_font_hpp.rb │ │ │ │ ├── font_cache_cpp.rb │ │ │ │ ├── font_cache_hpp.rb │ │ │ │ ├── fonts_cpp.rb │ │ │ │ ├── generated_font_cpp.rb │ │ │ │ ├── generated_font_hpp.rb │ │ │ │ ├── languages_bin.rb │ │ │ │ ├── languages_cpp.rb │ │ │ │ ├── template.rb │ │ │ │ ├── text_keys_and_languages_hpp.rb │ │ │ │ ├── texts_cpp.rb │ │ │ │ ├── typed_text_database_cpp.rb │ │ │ │ ├── typed_text_database_hpp.rb │ │ │ │ └── unicodes_txt.rb │ │ │ ├── excel_reader.rb │ │ │ ├── file_io.rb │ │ │ ├── generator.rb │ │ │ ├── outputter.rb │ │ │ ├── sanitizer.rb │ │ │ ├── string_collector.rb │ │ │ ├── text_entries.rb │ │ │ ├── text_entries_excel_reader.rb │ │ │ ├── typographies.rb │ │ │ └── typographies_excel_reader.rb │ │ │ └── main.rb │ │ ├── lib │ │ ├── core │ │ │ ├── cortex_m0 │ │ │ │ ├── IAR8.x │ │ │ │ │ ├── touchgfx_core.a │ │ │ │ │ └── touchgfx_core_release.a │ │ │ │ ├── Keil │ │ │ │ │ └── touchgfx_core.lib │ │ │ │ └── gcc │ │ │ │ │ └── libtouchgfx.a │ │ │ ├── cortex_m4f │ │ │ │ ├── IAR8.x │ │ │ │ │ ├── touchgfx_core.a │ │ │ │ │ └── touchgfx_core_release.a │ │ │ │ ├── Keil │ │ │ │ │ └── touchgfx_core.lib │ │ │ │ └── gcc │ │ │ │ │ ├── libtouchgfx-float-abi-hard.a │ │ │ │ │ └── libtouchgfx.a │ │ │ └── cortex_m7 │ │ │ │ ├── IAR │ │ │ │ ├── touchgfx_core.a │ │ │ │ └── touchgfx_core_release.a │ │ │ │ ├── IAR8.x │ │ │ │ ├── touchgfx_core.a │ │ │ │ └── touchgfx_core_release.a │ │ │ │ ├── Keil │ │ │ │ └── touchgfx_core.lib │ │ │ │ └── gcc │ │ │ │ ├── libtouchgfx-float-abi-hard.a │ │ │ │ └── libtouchgfx.a │ │ ├── linux │ │ │ └── libtouchgfx.a │ │ ├── sdl2 │ │ │ ├── linux64 │ │ │ │ ├── libSDL2.a │ │ │ │ └── libSDL2_image.a │ │ │ └── win32 │ │ │ │ ├── README-SDL.txt │ │ │ │ ├── SDL2.dll │ │ │ │ ├── SDL2.lib │ │ │ │ ├── SDL2_image.dll │ │ │ │ ├── SDL2_image.lib │ │ │ │ ├── dll2lib.bat │ │ │ │ ├── libSDL2.a │ │ │ │ ├── libSDL2_image.a │ │ │ │ ├── libpng16-16.dll │ │ │ │ └── zlib1.dll │ │ └── win │ │ │ ├── mingw32 │ │ │ └── libtouchgfx.a │ │ │ └── msvs │ │ │ ├── libtouchgfx_v100.lib │ │ │ ├── libtouchgfx_v100_debug.lib │ │ │ ├── libtouchgfx_v110.lib │ │ │ ├── libtouchgfx_v110_debug.lib │ │ │ ├── libtouchgfx_v120.lib │ │ │ ├── libtouchgfx_v120_debug.lib │ │ │ ├── libtouchgfx_v140.lib │ │ │ ├── libtouchgfx_v140_debug.lib │ │ │ ├── libtouchgfx_v141.lib │ │ │ ├── libtouchgfx_v141_debug.lib │ │ │ ├── libtouchgfx_v142.lib │ │ │ └── libtouchgfx_v142_debug.lib │ │ └── os │ │ ├── OSWrappers.cpp │ │ └── OSWrappers_cmsis.cpp └── Third_Party │ └── FreeRTOS │ └── Source │ ├── CMSIS_RTOS │ ├── cmsis_os.c │ └── cmsis_os.h │ ├── croutine.c │ ├── event_groups.c │ ├── include │ ├── FreeRTOS.h │ ├── StackMacros.h │ ├── croutine.h │ ├── deprecated_definitions.h │ ├── event_groups.h │ ├── list.h │ ├── message_buffer.h │ ├── mpu_prototypes.h │ ├── mpu_wrappers.h │ ├── portable.h │ ├── projdefs.h │ ├── queue.h │ ├── semphr.h │ ├── stack_macros.h │ ├── stream_buffer.h │ ├── task.h │ └── timers.h │ ├── list.c │ ├── portable │ ├── GCC │ │ └── ARM_CM7 │ │ │ └── r0p1 │ │ │ ├── port.c │ │ │ └── portmacro.h │ └── MemMang │ │ └── heap_4.c │ ├── queue.c │ ├── stream_buffer.c │ ├── tasks.c │ └── timers.c ├── MyProject Debug.launch ├── MyProject.ioc ├── README.md ├── STM32F746NGHX_FLASH.ld ├── STM32F746NGHX_RAM.ld └── TouchGFX ├── App ├── app_touchgfx.c └── app_touchgfx.h ├── ApplicationTemplate.touchgfx.part ├── MyProject.touchgfx ├── application.config ├── assets ├── fonts │ ├── arial.ttf │ └── verdana.ttf ├── images │ ├── __designer │ │ ├── Blue_Buttons_Round_icon_button.png │ │ └── Blue_Buttons_Round_icon_button_pressed.png │ ├── icon_keyboard_even_row.png │ ├── icon_keyboard_highlighted.png │ ├── icon_keyboard_odd_row.png │ ├── keyboard_background.png │ ├── keyboard_key_delete_highlighted.png │ ├── keyboard_key_highlighted.png │ ├── keyboard_key_num_highlighted.png │ ├── keyboard_key_shift_highlighted.png │ └── keyboard_space_highlighted.png └── texts │ └── texts.xlsx ├── config ├── gcc │ └── app.mk └── msvs │ └── Application.props ├── generated ├── fonts │ ├── UnicodeListarial_10_4.txt │ ├── UnicodeListarial_20_4.txt │ ├── UnicodeListarial_28_4.txt │ ├── UnicodeListverdana_10_4.txt │ ├── UnicodeListverdana_20_4.txt │ ├── UnicodeListverdana_40_4.txt │ ├── cache │ │ ├── ApplicationFontProvider.cache │ │ ├── ApplicationFontProviderHpp.cache │ │ ├── Font_arial_10_4bppCpp.cache │ │ ├── Font_arial_20_4bppCpp.cache │ │ ├── Font_arial_28_4bppCpp.cache │ │ ├── Font_verdana_10_4bppCpp.cache │ │ ├── Font_verdana_20_4bppCpp.cache │ │ └── Font_verdana_40_4bppCpp.cache │ ├── include │ │ └── fonts │ │ │ ├── ApplicationFontProvider.hpp │ │ │ ├── CachedFont.hpp │ │ │ ├── FontCache.hpp │ │ │ └── GeneratedFont.hpp │ └── src │ │ ├── ApplicationFontProvider.cpp │ │ ├── CachedFont.cpp │ │ ├── FontCache.cpp │ │ ├── Font_arial_10_4bpp_0.cpp │ │ ├── Font_arial_20_4bpp_0.cpp │ │ ├── Font_arial_20_4bpp_4.cpp │ │ ├── Font_arial_28_4bpp_0.cpp │ │ ├── Font_arial_28_4bpp_4.cpp │ │ ├── Font_verdana_10_4bpp_0.cpp │ │ ├── Font_verdana_20_4bpp_0.cpp │ │ ├── Font_verdana_20_4bpp_4.cpp │ │ ├── Font_verdana_40_4bpp_0.cpp │ │ ├── GeneratedFont.cpp │ │ ├── Kerning_arial_10_4bpp.cpp │ │ ├── Kerning_arial_20_4bpp.cpp │ │ ├── Kerning_arial_28_4bpp.cpp │ │ ├── Kerning_verdana_10_4bpp.cpp │ │ ├── Kerning_verdana_20_4bpp.cpp │ │ ├── Kerning_verdana_40_4bpp.cpp │ │ ├── Table_arial_10_4bpp.cpp │ │ ├── Table_arial_20_4bpp.cpp │ │ ├── Table_arial_28_4bpp.cpp │ │ ├── Table_verdana_10_4bpp.cpp │ │ ├── Table_verdana_20_4bpp.cpp │ │ └── Table_verdana_40_4bpp.cpp ├── gui_generated │ ├── include │ │ └── gui_generated │ │ │ ├── common │ │ │ ├── FrontendApplicationBase.hpp │ │ │ ├── FrontendHeapBase.hpp │ │ │ └── SimConstants.hpp │ │ │ ├── screen1_screen │ │ │ └── Screen1ViewBase.hpp │ │ │ ├── screenkeyboard_screen │ │ │ └── ScreenKeyboardViewBase.hpp │ │ │ └── screensettings_screen │ │ │ └── ScreenSettingsViewBase.hpp │ └── src │ │ ├── common │ │ └── FrontendApplicationBase.cpp │ │ ├── screen1_screen │ │ └── Screen1ViewBase.cpp │ │ ├── screenkeyboard_screen │ │ └── ScreenKeyboardViewBase.cpp │ │ └── screensettings_screen │ │ └── ScreenSettingsViewBase.cpp ├── images │ ├── include │ │ └── BitmapDatabase.hpp │ └── src │ │ ├── BitmapDatabase.cpp │ │ ├── __designer │ │ ├── Blue_Buttons_Round_icon_button.cpp │ │ └── Blue_Buttons_Round_icon_button_pressed.cpp │ │ ├── icon_keyboard_even_row.cpp │ │ ├── icon_keyboard_highlighted.cpp │ │ ├── icon_keyboard_odd_row.cpp │ │ ├── keyboard_background.cpp │ │ ├── keyboard_key_delete_highlighted.cpp │ │ ├── keyboard_key_highlighted.cpp │ │ ├── keyboard_key_num_highlighted.cpp │ │ ├── keyboard_key_shift_highlighted.cpp │ │ └── keyboard_space_highlighted.cpp ├── simulator │ ├── gcc │ │ └── Makefile │ ├── include │ │ └── simulator │ │ │ └── mainBase.hpp │ ├── msvs │ │ ├── touchgfx.props │ │ ├── touchgfx_prebuild.targets │ │ └── touchgfx_sdl2.props │ ├── src │ │ └── mainBase.cpp │ ├── touchgfx.ico │ ├── touchgfx.rc │ └── touchgfx.res └── texts │ ├── cache │ ├── LanguageCpp_Gb.cache │ ├── TextKeysAndLanguages.cache │ ├── TextsCpp.cache │ ├── TypedTextDatabaseCpp.cache │ ├── compile_time.cache │ └── options.cache │ ├── include │ └── texts │ │ ├── TextKeysAndLanguages.hpp │ │ └── TypedTextDatabase.hpp │ └── src │ ├── LanguageGb.cpp │ ├── Texts.cpp │ └── TypedTextDatabase.cpp ├── gui ├── include │ └── gui │ │ ├── common │ │ ├── CustomKeyboard.hpp │ │ ├── FrontendApplication.hpp │ │ ├── FrontendHeap.hpp │ │ ├── KeyboardKeyMapping.hpp │ │ └── KeyboardLayout.hpp │ │ ├── model │ │ ├── Model.hpp │ │ └── ModelListener.hpp │ │ ├── screen1_screen │ │ ├── Screen1Presenter.hpp │ │ └── Screen1View.hpp │ │ ├── screenkeyboard_screen │ │ ├── ScreenKeyboardPresenter.hpp │ │ └── ScreenKeyboardView.hpp │ │ └── screensettings_screen │ │ ├── ScreenSettingsPresenter.hpp │ │ └── ScreenSettingsView.hpp └── src │ ├── common │ ├── CustomKeyboard.cpp │ └── FrontendApplication.cpp │ ├── model │ └── Model.cpp │ ├── screen1_screen │ ├── Screen1Presenter.cpp │ └── Screen1View.cpp │ ├── screenkeyboard_screen │ ├── ScreenKeyboardPresenter.cpp │ └── ScreenKeyboardView.cpp │ └── screensettings_screen │ ├── ScreenSettingsPresenter.cpp │ └── ScreenSettingsView.cpp ├── simulator ├── gcc │ └── Makefile ├── main.cpp └── msvs │ ├── Application.sln │ ├── Application.vcxproj │ └── Application.vcxproj.filters └── target ├── STM32TouchController.cpp ├── STM32TouchController.hpp ├── TouchGFXGPIO.cpp ├── TouchGFXHAL.cpp ├── TouchGFXHAL.hpp └── generated ├── OSWrappers.cpp ├── STM32DMA.cpp ├── STM32DMA.hpp ├── TouchGFXConfiguration.cpp ├── TouchGFXGeneratedHAL.cpp └── TouchGFXGeneratedHAL.hpp /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/.mxproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /Core/Inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Inc/main.h -------------------------------------------------------------------------------- /Core/Inc/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Inc/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /Core/Inc/stm32f7xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Inc/stm32f7xx_it.h -------------------------------------------------------------------------------- /Core/Src/freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Src/freertos.c -------------------------------------------------------------------------------- /Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Src/main.c -------------------------------------------------------------------------------- /Core/Src/stm32f7xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Src/stm32f7xx_hal_msp.c -------------------------------------------------------------------------------- /Core/Src/stm32f7xx_hal_timebase_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Src/stm32f7xx_hal_timebase_tim.c -------------------------------------------------------------------------------- /Core/Src/stm32f7xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Src/stm32f7xx_it.c -------------------------------------------------------------------------------- /Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Src/syscalls.c -------------------------------------------------------------------------------- /Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Src/sysmem.c -------------------------------------------------------------------------------- /Core/Src/system_stm32f7xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Src/system_stm32f7xx.c -------------------------------------------------------------------------------- /Core/Startup/startup_stm32f746nghx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Core/Startup/startup_stm32f746nghx.s -------------------------------------------------------------------------------- /Drivers/BSP/stm32746g_discovery_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/BSP/stm32746g_discovery_qspi.c -------------------------------------------------------------------------------- /Drivers/BSP/stm32746g_discovery_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/BSP/stm32746g_discovery_qspi.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f746xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f746xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Device/ST/STM32F7xx/Include/system_stm32f7xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/Components/Common/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/Components/Common/ts.h -------------------------------------------------------------------------------- /Drivers/Components/ft5336/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/Components/ft5336/Release_Notes.html -------------------------------------------------------------------------------- /Drivers/Components/ft5336/ft5336.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/Components/ft5336/ft5336.c -------------------------------------------------------------------------------- /Drivers/Components/ft5336/ft5336.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/Components/ft5336/ft5336.h -------------------------------------------------------------------------------- /Drivers/Components/n25q128a/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/Components/n25q128a/Release_Notes.html -------------------------------------------------------------------------------- /Drivers/Components/n25q128a/n25q128a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/Components/n25q128a/n25q128a.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma2d.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dsi.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_exti.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_qspi.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sdram.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_fmc.h -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma2d.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dsi.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_ltdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_ltdc.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_ltdc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_ltdc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_qspi.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_sdram.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_fmc.c -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/common/AbstractPartition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/common/AbstractPartition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/common/Meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/common/Meta.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/common/Partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/common/Partition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/common/TouchGFXInit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/common/TouchGFXInit.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/mvp/MVPApplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/mvp/MVPApplication.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/mvp/MVPHeap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/mvp/MVPHeap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/mvp/Presenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/mvp/Presenter.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/mvp/View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/mvp/View.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/core/MCUInstrumentation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/core/MCUInstrumentation.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/button/ButtonController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/button/ButtonController.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/i2c/I2C.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/i2c/I2C.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD16bpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD16bpp.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD16bppSerialFlash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD16bppSerialFlash.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD1bpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD1bpp.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD24bpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD24bpp.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD2bpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD2bpp.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD32bpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD32bpp.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD4bpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD4bpp.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD8bpp_ABGR2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD8bpp_ABGR2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD8bpp_ARGB2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD8bpp_ARGB2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD8bpp_BGRA2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD8bpp_BGRA2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD8bpp_RGBA2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/lcd/LCD8bpp_RGBA2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/touch/I2CTouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/touch/I2CTouchController.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/touch/NoTouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/touch/NoTouchController.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/touch/SDL2TouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/touch/SDL2TouchController.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/touch/SDLTouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/touch/SDLTouchController.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/touch/ST1232TouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/touch/ST1232TouchController.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/touch/TouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/touch/TouchController.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/HALSDL2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/HALSDL2.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_config.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_copying.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_egl.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_error.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_events.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_gesture.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_image.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_joystick.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_keyboard.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_keycode.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_log.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_main.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_name.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_opengles.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_platform.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_power.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_render.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_revision.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_scancode.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_surface.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_system.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_test.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_test_log.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_test_md5.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_types.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/vendor/SDL2/SDL_video.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Application.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Callback.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Color.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/ConstFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/ConstFont.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Drawable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Drawable.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/EasingEquations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/EasingEquations.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Event.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Font.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/FontManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/FontManager.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/InternalFlashFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/InternalFlashFont.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/JSMOCHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/JSMOCHelper.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Math3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Math3D.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Screen.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/TextProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/TextProvider.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Texts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Texts.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/TextureMapTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/TextureMapTypes.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/TypedText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/TypedText.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/UIEventListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/UIEventListener.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Unicode.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Utils.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Cell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Cell.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Outline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Outline.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Rasterizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Rasterizer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Renderer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/RenderingBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/RenderingBuffer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Scanline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Scanline.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/license.txt -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/CacheableContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/CacheableContainer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/Container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/Container.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ListLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ListLayout.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ModalWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ModalWindow.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ScrollableContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ScrollableContainer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/SlideMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/SlideMenu.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/Slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/Slider.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/SwipeContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/SwipeContainer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ZoomAnimationImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ZoomAnimationImage.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/Buttons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/Buttons.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/ClickButtonTrigger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/ClickButtonTrigger.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/IconButtonStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/IconButtonStyle.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/ImageButtonStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/ImageButtonStyle.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/RepeatButtonTrigger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/RepeatButtonTrigger.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/TextButtonStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/TextButtonStyle.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/ToggleButtonTrigger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/ToggleButtonTrigger.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/TouchButtonTrigger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/TouchButtonTrigger.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/clock/AbstractClock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/clock/AbstractClock.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/clock/AnalogClock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/clock/AnalogClock.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/clock/DigitalClock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/clock/DigitalClock.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/DrawableList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/DrawableList.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollBase.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollList.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollWheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollWheel.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollWheelBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollWheelBase.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/events/ClickEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/events/ClickEvent.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/events/DragEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/events/DragEvent.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/events/GestureEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/events/GestureEvent.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Atomic.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/BlitOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/BlitOp.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/BoardConfiguration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/BoardConfiguration.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Buttons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Buttons.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Config.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/DMA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/DMA.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/FlashDataReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/FlashDataReader.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/FrameBufferAllocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/FrameBufferAllocator.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/GPIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/GPIO.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Gestures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Gestures.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/HAL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/HAL.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/LED.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/LED.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/NoDMA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/NoDMA.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/OSWrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/OSWrappers.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Types.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/lcd/LCD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/lcd/LCD.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/ClickListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/ClickListener.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/Draggable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/Draggable.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/FadeAnimator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/FadeAnimator.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/MoveAnimator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/MoveAnimator.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/PreRenderable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/PreRenderable.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/Snapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/Snapper.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transforms/DisplayTransformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transforms/DisplayTransformation.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transforms/TouchCalibration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transforms/TouchCalibration.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/CoverTransition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/CoverTransition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/NoTransition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/NoTransition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/SlideTransition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/SlideTransition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/Transition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/Transition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AbstractButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AbstractButton.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AnimatedImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AnimatedImage.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AnimationTextureMapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AnimationTextureMapper.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Box.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/BoxWithBorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/BoxWithBorder.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Button.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ButtonWithIcon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ButtonWithIcon.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ButtonWithLabel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ButtonWithLabel.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Image.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Keyboard.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/PixelDataWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/PixelDataWidget.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RadioButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RadioButton.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RadioButtonGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RadioButtonGroup.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RepeatButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RepeatButton.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ScalableImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ScalableImage.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/SnapshotWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/SnapshotWidget.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextArea.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextAreaWithWildcard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextAreaWithWildcard.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextureMapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextureMapper.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TiledImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TiledImage.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ToggleButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ToggleButton.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TouchArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TouchArea.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Widget.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainter.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterABGR2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterABGR2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterARGB2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterARGB2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterARGB8888.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterARGB8888.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterBGRA2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterBGRA2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterBW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterBW.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterGRAY2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterGRAY2.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterGRAY4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterGRAY4.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterRGB565.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterRGB565.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterRGB888.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterRGB888.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterRGBA2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainterRGBA2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractShape.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/CWRUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/CWRUtil.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Canvas.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/CanvasWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/CanvasWidget.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Circle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Circle.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Line.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterABGR2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterABGR2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterABGR2222Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterABGR2222Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB2222Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB2222Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB8888.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB8888.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB8888Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB8888Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB8888L8Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB8888L8Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBGRA2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBGRA2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBGRA2222Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBGRA2222Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBW.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBWBitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBWBitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY2.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY2Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY2Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY4.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY4Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY4Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB565.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB565.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB565Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB565Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB565L8Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB565L8Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB888.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB888.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB888Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB888Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB888L8Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB888L8Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGBA2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGBA2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGBA2222Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGBA2222Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Shape.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/platform/driver/touch/SDL2TouchController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/platform/driver/touch/SDL2TouchController.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/platform/driver/touch/ST1232TouchController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/platform/driver/touch/ST1232TouchController.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/platform/hal/simulator/sdl2/HALSDL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/platform/hal/simulator/sdl2/HALSDL2.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/platform/hal/simulator/sdl2/HALSDL2_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/platform/hal/simulator/sdl2/HALSDL2_icon.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/platform/hal/simulator/sdl2/OSWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/platform/hal/simulator/sdl2/OSWrappers.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/CacheableContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/CacheableContainer.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/Container.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ListLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ListLayout.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ModalWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ModalWindow.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ScrollableContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ScrollableContainer.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/SlideMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/SlideMenu.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/Slider.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/SwipeContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/SwipeContainer.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ZoomAnimationImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ZoomAnimationImage.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/clock/AbstractClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/clock/AbstractClock.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/clock/AnalogClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/clock/AnalogClock.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/clock/DigitalClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/clock/DigitalClock.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/DrawableList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/DrawableList.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollBase.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollList.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollWheel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollWheel.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollWheelBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollWheelBase.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AbstractButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AbstractButton.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AnimatedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AnimatedImage.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AnimationTextureMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AnimationTextureMapper.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Box.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/BoxWithBorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/BoxWithBorder.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Button.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ButtonWithIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ButtonWithIcon.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ButtonWithLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ButtonWithLabel.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Image.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Keyboard.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/PixelDataWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/PixelDataWidget.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/RadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/RadioButton.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/RepeatButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/RepeatButton.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ScalableImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ScalableImage.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/SnapshotWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/SnapshotWidget.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextArea.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextAreaWithWildcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextAreaWithWildcard.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextureMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextureMapper.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TiledImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TiledImage.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ToggleButton.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TouchArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TouchArea.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainter.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterABGR2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterABGR2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterARGB2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterARGB2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterARGB8888.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterARGB8888.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterBGRA2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterBGRA2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterBW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterBW.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterGRAY2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterGRAY2.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterGRAY4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterGRAY4.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterRGB565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterRGB565.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterRGB888.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterRGB888.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterRGBA2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterRGBA2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractShape.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/Canvas.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/CanvasWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/CanvasWidget.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/Circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/Circle.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/Line.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterABGR2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterABGR2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterABGR2222Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterABGR2222Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB2222Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB2222Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB8888.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB8888.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB8888Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB8888Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB8888L8Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB8888L8Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBGRA2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBGRA2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBGRA2222Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBGRA2222Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBW.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBWBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBWBitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY2.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY2Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY2Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY4.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY4Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY4Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB565.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB565Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB565Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB565L8Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB565L8Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB888.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB888.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB888Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB888Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB888L8Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB888L8Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGBA2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGBA2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGBA2222Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGBA2222Bitmap.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/fontconvert/build/linux/fontconvert.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/fontconvert/build/linux/fontconvert.out -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/fontconvert/build/win/fontconvert.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/fontconvert/build/win/fontconvert.out -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/imageconvert/build/linux/imageconvert.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/imageconvert/build/linux/imageconvert.out -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/imageconvert/build/msvs/ImageConvert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/imageconvert/build/msvs/ImageConvert.exe -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/imageconvert/build/win/imageconvert.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/imageconvert/build/win/imageconvert.out -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/CachedFont.cpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/CachedFont.cpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/CachedFont.hpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/CachedFont.hpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/FontCache.cpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/FontCache.cpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/FontCache.hpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/FontCache.hpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/GeneratedFont.cpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/GeneratedFont.cpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/GeneratedFont.hpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/GeneratedFont.hpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/LanguageXX.cpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/LanguageXX.cpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/TextKeysAndLanguages.hpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/TextKeysAndLanguages.hpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/Texts.cpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/Texts.cpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/TypedTextDatabase.cpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/TypedTextDatabase.cpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/TypedTextDatabase.hpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/TypedTextDatabase.hpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/cached_font_cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/cached_font_cpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/cached_font_hpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/cached_font_hpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/font_cache_cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/font_cache_cpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/font_cache_hpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/font_cache_hpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/fonts_cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/fonts_cpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/generated_font_cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/generated_font_cpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/generated_font_hpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/generated_font_hpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/languages_bin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/languages_bin.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/languages_cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/languages_cpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/template.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/texts_cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/texts_cpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/typed_text_database_cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/typed_text_database_cpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/typed_text_database_hpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/typed_text_database_hpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/unicodes_txt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/unicodes_txt.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/excel_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/excel_reader.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/file_io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/file_io.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/generator.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/outputter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/outputter.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/sanitizer.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/string_collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/string_collector.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/text_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/text_entries.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/text_entries_excel_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/text_entries_excel_reader.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/typographies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/typographies.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/typographies_excel_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/typographies_excel_reader.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/main.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m0/IAR8.x/touchgfx_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m0/IAR8.x/touchgfx_core.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m0/IAR8.x/touchgfx_core_release.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m0/IAR8.x/touchgfx_core_release.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m0/Keil/touchgfx_core.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m0/Keil/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m0/gcc/libtouchgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m0/gcc/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m4f/IAR8.x/touchgfx_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m4f/IAR8.x/touchgfx_core.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m4f/IAR8.x/touchgfx_core_release.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m4f/IAR8.x/touchgfx_core_release.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m4f/Keil/touchgfx_core.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m4f/Keil/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m4f/gcc/libtouchgfx-float-abi-hard.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m4f/gcc/libtouchgfx-float-abi-hard.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m4f/gcc/libtouchgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m4f/gcc/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m7/IAR/touchgfx_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/IAR/touchgfx_core.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m7/IAR/touchgfx_core_release.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/IAR/touchgfx_core_release.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m7/IAR8.x/touchgfx_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/IAR8.x/touchgfx_core.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m7/IAR8.x/touchgfx_core_release.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/IAR8.x/touchgfx_core_release.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m7/Keil/touchgfx_core.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/Keil/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m7/gcc/libtouchgfx-float-abi-hard.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/gcc/libtouchgfx-float-abi-hard.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m7/gcc/libtouchgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/gcc/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/linux/libtouchgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/linux/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/linux64/libSDL2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/linux64/libSDL2.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/linux64/libSDL2_image.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/linux64/libSDL2_image.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/README-SDL.txt -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2.dll -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2_image.dll -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2_image.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/dll2lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/dll2lib.bat -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/libSDL2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/libSDL2.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/libSDL2_image.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/libSDL2_image.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/libpng16-16.dll -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/zlib1.dll -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/mingw32/libtouchgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/mingw32/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v100.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v100.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v100_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v100_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v110.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v110.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v110_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v110_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v120.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v120.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v120_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v120_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v140.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v140.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v140_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v140_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v141.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v141.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v141_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v141_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v142.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v142.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v142_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v142_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/os/OSWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/os/OSWrappers.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/os/OSWrappers_cmsis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/ST/touchgfx/os/OSWrappers_cmsis.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/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/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/croutine.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/list.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/message_buffer.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/task.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/list.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM7/r0p1/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM7/r0p1/port.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM7/r0p1/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM7/r0p1/portmacro.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/queue.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/tasks.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/Middlewares/Third_Party/FreeRTOS/Source/timers.c -------------------------------------------------------------------------------- /MyProject Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/MyProject Debug.launch -------------------------------------------------------------------------------- /MyProject.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/MyProject.ioc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/README.md -------------------------------------------------------------------------------- /STM32F746NGHX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/STM32F746NGHX_FLASH.ld -------------------------------------------------------------------------------- /STM32F746NGHX_RAM.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/STM32F746NGHX_RAM.ld -------------------------------------------------------------------------------- /TouchGFX/App/app_touchgfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/App/app_touchgfx.c -------------------------------------------------------------------------------- /TouchGFX/App/app_touchgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/App/app_touchgfx.h -------------------------------------------------------------------------------- /TouchGFX/ApplicationTemplate.touchgfx.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/ApplicationTemplate.touchgfx.part -------------------------------------------------------------------------------- /TouchGFX/MyProject.touchgfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/MyProject.touchgfx -------------------------------------------------------------------------------- /TouchGFX/application.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/application.config -------------------------------------------------------------------------------- /TouchGFX/assets/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/fonts/arial.ttf -------------------------------------------------------------------------------- /TouchGFX/assets/fonts/verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/fonts/verdana.ttf -------------------------------------------------------------------------------- /TouchGFX/assets/images/__designer/Blue_Buttons_Round_icon_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/__designer/Blue_Buttons_Round_icon_button.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/__designer/Blue_Buttons_Round_icon_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/__designer/Blue_Buttons_Round_icon_button_pressed.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/icon_keyboard_even_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/icon_keyboard_even_row.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/icon_keyboard_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/icon_keyboard_highlighted.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/icon_keyboard_odd_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/icon_keyboard_odd_row.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/keyboard_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/keyboard_background.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/keyboard_key_delete_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/keyboard_key_delete_highlighted.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/keyboard_key_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/keyboard_key_highlighted.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/keyboard_key_num_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/keyboard_key_num_highlighted.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/keyboard_key_shift_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/keyboard_key_shift_highlighted.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/keyboard_space_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/images/keyboard_space_highlighted.png -------------------------------------------------------------------------------- /TouchGFX/assets/texts/texts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/assets/texts/texts.xlsx -------------------------------------------------------------------------------- /TouchGFX/config/gcc/app.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/config/gcc/app.mk -------------------------------------------------------------------------------- /TouchGFX/config/msvs/Application.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/config/msvs/Application.props -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListarial_10_4.txt: -------------------------------------------------------------------------------- 1 | 49 2 | 50 3 | 51 4 | 63 5 | 65 6 | 66 7 | 67 -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListarial_20_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/UnicodeListarial_20_4.txt -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListarial_28_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/UnicodeListarial_28_4.txt -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListverdana_10_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/UnicodeListverdana_10_4.txt -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListverdana_20_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/UnicodeListverdana_20_4.txt -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListverdana_40_4.txt: -------------------------------------------------------------------------------- 1 | 63 -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/ApplicationFontProvider.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/cache/ApplicationFontProvider.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/ApplicationFontProviderHpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/cache/ApplicationFontProviderHpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_arial_10_4bppCpp.cache: -------------------------------------------------------------------------------- 1 | A4 2 | 49 3 | 50 4 | 51 5 | 63 6 | 65 7 | 66 8 | 67 9 | -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_arial_20_4bppCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/cache/Font_arial_20_4bppCpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_arial_28_4bppCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/cache/Font_arial_28_4bppCpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_verdana_10_4bppCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/cache/Font_verdana_10_4bppCpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_verdana_20_4bppCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/cache/Font_verdana_20_4bppCpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_verdana_40_4bppCpp.cache: -------------------------------------------------------------------------------- 1 | A4 2 | 63 3 | -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/include/fonts/ApplicationFontProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/include/fonts/ApplicationFontProvider.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/include/fonts/CachedFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/include/fonts/CachedFont.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/include/fonts/FontCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/include/fonts/FontCache.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/include/fonts/GeneratedFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/include/fonts/GeneratedFont.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/ApplicationFontProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/ApplicationFontProvider.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/CachedFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/CachedFont.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/FontCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/FontCache.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_arial_10_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Font_arial_10_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_arial_20_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Font_arial_20_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_arial_20_4bpp_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Font_arial_20_4bpp_4.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_arial_28_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Font_arial_28_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_arial_28_4bpp_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Font_arial_28_4bpp_4.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_verdana_10_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Font_verdana_10_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_verdana_20_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Font_verdana_20_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_verdana_20_4bpp_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Font_verdana_20_4bpp_4.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_verdana_40_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Font_verdana_40_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/GeneratedFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/GeneratedFont.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_arial_10_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Kerning_arial_10_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_arial_20_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Kerning_arial_20_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_arial_28_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Kerning_arial_28_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_verdana_10_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Kerning_verdana_10_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_verdana_20_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Kerning_verdana_20_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_verdana_40_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Kerning_verdana_40_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_arial_10_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Table_arial_10_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_arial_20_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Table_arial_20_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_arial_28_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Table_arial_28_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_verdana_10_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Table_verdana_10_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_verdana_20_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Table_verdana_20_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_verdana_40_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/fonts/src/Table_verdana_40_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/include/gui_generated/common/FrontendApplicationBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/gui_generated/include/gui_generated/common/FrontendApplicationBase.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/include/gui_generated/common/FrontendHeapBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/gui_generated/include/gui_generated/common/FrontendHeapBase.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/include/gui_generated/common/SimConstants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/gui_generated/include/gui_generated/common/SimConstants.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/include/gui_generated/screen1_screen/Screen1ViewBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/gui_generated/include/gui_generated/screen1_screen/Screen1ViewBase.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/common/FrontendApplicationBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/gui_generated/src/common/FrontendApplicationBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/screen1_screen/Screen1ViewBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/gui_generated/src/screen1_screen/Screen1ViewBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/screenkeyboard_screen/ScreenKeyboardViewBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/gui_generated/src/screenkeyboard_screen/ScreenKeyboardViewBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/screensettings_screen/ScreenSettingsViewBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/gui_generated/src/screensettings_screen/ScreenSettingsViewBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/include/BitmapDatabase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/include/BitmapDatabase.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/BitmapDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/BitmapDatabase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/__designer/Blue_Buttons_Round_icon_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/__designer/Blue_Buttons_Round_icon_button.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/__designer/Blue_Buttons_Round_icon_button_pressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/__designer/Blue_Buttons_Round_icon_button_pressed.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/icon_keyboard_even_row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/icon_keyboard_even_row.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/icon_keyboard_highlighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/icon_keyboard_highlighted.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/icon_keyboard_odd_row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/icon_keyboard_odd_row.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/keyboard_background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/keyboard_background.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/keyboard_key_delete_highlighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/keyboard_key_delete_highlighted.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/keyboard_key_highlighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/keyboard_key_highlighted.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/keyboard_key_num_highlighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/keyboard_key_num_highlighted.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/keyboard_key_shift_highlighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/keyboard_key_shift_highlighted.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/keyboard_space_highlighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/images/src/keyboard_space_highlighted.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/simulator/gcc/Makefile -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/include/simulator/mainBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/simulator/include/simulator/mainBase.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/msvs/touchgfx.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/simulator/msvs/touchgfx.props -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/msvs/touchgfx_prebuild.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/simulator/msvs/touchgfx_prebuild.targets -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/msvs/touchgfx_sdl2.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/simulator/msvs/touchgfx_sdl2.props -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/src/mainBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/simulator/src/mainBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/touchgfx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/simulator/touchgfx.ico -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/touchgfx.rc: -------------------------------------------------------------------------------- 1 | id ICON touchgfx.ico 2 | -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/touchgfx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/simulator/touchgfx.res -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/LanguageCpp_Gb.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/cache/LanguageCpp_Gb.cache -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/TextKeysAndLanguages.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/cache/TextKeysAndLanguages.cache -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/TextsCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/cache/TextsCpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/TypedTextDatabaseCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/cache/TypedTextDatabaseCpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/compile_time.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/options.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/cache/options.cache -------------------------------------------------------------------------------- /TouchGFX/generated/texts/include/texts/TextKeysAndLanguages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/include/texts/TextKeysAndLanguages.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/texts/include/texts/TypedTextDatabase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/include/texts/TypedTextDatabase.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/texts/src/LanguageGb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/src/LanguageGb.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/texts/src/Texts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/src/Texts.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/texts/src/TypedTextDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/generated/texts/src/TypedTextDatabase.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/common/CustomKeyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/common/CustomKeyboard.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/common/FrontendApplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/common/FrontendApplication.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/common/FrontendHeap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/common/FrontendHeap.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/common/KeyboardKeyMapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/common/KeyboardKeyMapping.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/common/KeyboardLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/common/KeyboardLayout.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/model/Model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/model/Model.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/model/ModelListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/model/ModelListener.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/screen1_screen/Screen1Presenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/screen1_screen/Screen1Presenter.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/screen1_screen/Screen1View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/screen1_screen/Screen1View.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/screenkeyboard_screen/ScreenKeyboardPresenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/screenkeyboard_screen/ScreenKeyboardPresenter.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/screenkeyboard_screen/ScreenKeyboardView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/screenkeyboard_screen/ScreenKeyboardView.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/screensettings_screen/ScreenSettingsPresenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/screensettings_screen/ScreenSettingsPresenter.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/screensettings_screen/ScreenSettingsView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/include/gui/screensettings_screen/ScreenSettingsView.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/common/CustomKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/src/common/CustomKeyboard.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/common/FrontendApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/src/common/FrontendApplication.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/model/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/src/model/Model.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/screen1_screen/Screen1Presenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/src/screen1_screen/Screen1Presenter.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/screen1_screen/Screen1View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/src/screen1_screen/Screen1View.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/screenkeyboard_screen/ScreenKeyboardPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/src/screenkeyboard_screen/ScreenKeyboardPresenter.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/screenkeyboard_screen/ScreenKeyboardView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/src/screenkeyboard_screen/ScreenKeyboardView.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/screensettings_screen/ScreenSettingsPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/src/screensettings_screen/ScreenSettingsPresenter.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/screensettings_screen/ScreenSettingsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/gui/src/screensettings_screen/ScreenSettingsView.cpp -------------------------------------------------------------------------------- /TouchGFX/simulator/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/simulator/gcc/Makefile -------------------------------------------------------------------------------- /TouchGFX/simulator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/simulator/main.cpp -------------------------------------------------------------------------------- /TouchGFX/simulator/msvs/Application.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/simulator/msvs/Application.sln -------------------------------------------------------------------------------- /TouchGFX/simulator/msvs/Application.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/simulator/msvs/Application.vcxproj -------------------------------------------------------------------------------- /TouchGFX/simulator/msvs/Application.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/simulator/msvs/Application.vcxproj.filters -------------------------------------------------------------------------------- /TouchGFX/target/STM32TouchController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/STM32TouchController.cpp -------------------------------------------------------------------------------- /TouchGFX/target/STM32TouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/STM32TouchController.hpp -------------------------------------------------------------------------------- /TouchGFX/target/TouchGFXGPIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/TouchGFXGPIO.cpp -------------------------------------------------------------------------------- /TouchGFX/target/TouchGFXHAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/TouchGFXHAL.cpp -------------------------------------------------------------------------------- /TouchGFX/target/TouchGFXHAL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/TouchGFXHAL.hpp -------------------------------------------------------------------------------- /TouchGFX/target/generated/OSWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/generated/OSWrappers.cpp -------------------------------------------------------------------------------- /TouchGFX/target/generated/STM32DMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/generated/STM32DMA.cpp -------------------------------------------------------------------------------- /TouchGFX/target/generated/STM32DMA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/generated/STM32DMA.hpp -------------------------------------------------------------------------------- /TouchGFX/target/generated/TouchGFXConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/generated/TouchGFXConfiguration.cpp -------------------------------------------------------------------------------- /TouchGFX/target/generated/TouchGFXGeneratedHAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/generated/TouchGFXGeneratedHAL.cpp -------------------------------------------------------------------------------- /TouchGFX/target/generated/TouchGFXGeneratedHAL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlyamashita/touchgfxkeyboard/HEAD/TouchGFX/target/generated/TouchGFXGeneratedHAL.hpp --------------------------------------------------------------------------------