├── .cproject ├── .gitignore ├── .mxproject ├── .project ├── .settings ├── language.settings.xml ├── org.eclipse.cdt.codan.core.prefs ├── org.eclipse.cdt.core.prefs └── stm32cubeide.project.prefs ├── Core ├── Inc │ ├── FreeRTOSConfig.h │ ├── crc.h │ ├── dma2d.h │ ├── fmc.h │ ├── gpio.h │ ├── i2c.h │ ├── main.h │ ├── main2.h │ ├── platform.h │ ├── rtc.h │ ├── rtc_if.h │ ├── spi.h │ ├── stm32h7xx_hal_conf.h │ ├── stm32h7xx_it.h │ ├── stm32h7xx_ll_cortex.h │ ├── stm32h7xx_ll_rtc.h │ ├── tim.h │ └── utilities_conf.h ├── Src │ ├── crc.c │ ├── dma2d.c │ ├── fmc.c │ ├── freertos.c │ ├── gpio.c │ ├── i2c.c │ ├── main.c │ ├── main2.cpp │ ├── rtc.c │ ├── rtc_if.c │ ├── spi.c │ ├── stm32h7xx_hal_msp.c │ ├── stm32h7xx_hal_timebase_tim.c │ ├── stm32h7xx_it.c │ ├── stm32h7xx_ll_rtc.c │ ├── syscalls.c │ ├── sysmem.c │ ├── system_stm32h7xx.c │ └── tim.c ├── Startup │ └── startup_stm32h742vgtx.s └── Tests │ ├── radio_test.c │ └── radio_test.h ├── Drivers ├── BSP │ ├── Inc │ │ ├── MC2PA8201.h │ │ ├── MC2PA8201 │ │ │ ├── colors.h │ │ │ ├── font6x8.h │ │ │ ├── font8x14.h │ │ │ └── font8x8.h │ │ ├── MP2667.h │ │ └── SX1509B.h │ └── Src │ │ ├── MC2PA8201.c │ │ ├── MP2667.c │ │ └── SX1509B.c ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32H7xx │ │ │ └── Include │ │ │ ├── stm32h742xx.h │ │ │ ├── stm32h7xx.h │ │ │ └── system_stm32h7xx.h │ └── Include │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_armclang_ltm.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv81mml.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_cm35p.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h └── STM32H7xx_HAL_Driver │ ├── Inc │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── stm32h7xx_hal.h │ ├── stm32h7xx_hal_adc.h │ ├── stm32h7xx_hal_adc_ex.h │ ├── stm32h7xx_hal_cortex.h │ ├── stm32h7xx_hal_crc.h │ ├── stm32h7xx_hal_crc_ex.h │ ├── stm32h7xx_hal_def.h │ ├── stm32h7xx_hal_dma.h │ ├── stm32h7xx_hal_dma2d.h │ ├── stm32h7xx_hal_dma_ex.h │ ├── stm32h7xx_hal_exti.h │ ├── stm32h7xx_hal_flash.h │ ├── stm32h7xx_hal_flash_ex.h │ ├── stm32h7xx_hal_gpio.h │ ├── stm32h7xx_hal_gpio_ex.h │ ├── stm32h7xx_hal_hsem.h │ ├── stm32h7xx_hal_i2c.h │ ├── stm32h7xx_hal_i2c_ex.h │ ├── stm32h7xx_hal_i2s.h │ ├── stm32h7xx_hal_i2s_ex.h │ ├── stm32h7xx_hal_mdma.h │ ├── stm32h7xx_hal_pcd.h │ ├── stm32h7xx_hal_pcd_ex.h │ ├── stm32h7xx_hal_pwr.h │ ├── stm32h7xx_hal_pwr_ex.h │ ├── stm32h7xx_hal_qspi.h │ ├── stm32h7xx_hal_rcc.h │ ├── stm32h7xx_hal_rcc_ex.h │ ├── stm32h7xx_hal_rtc.h │ ├── stm32h7xx_hal_rtc_ex.h │ ├── stm32h7xx_hal_sai.h │ ├── stm32h7xx_hal_sai_ex.h │ ├── stm32h7xx_hal_sd.h │ ├── stm32h7xx_hal_sd_ex.h │ ├── stm32h7xx_hal_spi.h │ ├── stm32h7xx_hal_spi_ex.h │ ├── stm32h7xx_hal_sram.h │ ├── stm32h7xx_hal_tim.h │ ├── stm32h7xx_hal_tim_ex.h │ ├── stm32h7xx_hal_uart.h │ ├── stm32h7xx_hal_uart_ex.h │ ├── stm32h7xx_ll_adc.h │ ├── stm32h7xx_ll_delayblock.h │ ├── stm32h7xx_ll_fmc.h │ ├── stm32h7xx_ll_sdmmc.h │ └── stm32h7xx_ll_usb.h │ └── Src │ ├── stm32h7xx_hal.c │ ├── stm32h7xx_hal_adc.c │ ├── stm32h7xx_hal_adc_ex.c │ ├── stm32h7xx_hal_cortex.c │ ├── stm32h7xx_hal_crc.c │ ├── stm32h7xx_hal_crc_ex.c │ ├── stm32h7xx_hal_dma.c │ ├── stm32h7xx_hal_dma2d.c │ ├── stm32h7xx_hal_dma_ex.c │ ├── stm32h7xx_hal_exti.c │ ├── stm32h7xx_hal_flash.c │ ├── stm32h7xx_hal_flash_ex.c │ ├── stm32h7xx_hal_gpio.c │ ├── stm32h7xx_hal_hsem.c │ ├── stm32h7xx_hal_i2c.c │ ├── stm32h7xx_hal_i2c_ex.c │ ├── stm32h7xx_hal_i2s.c │ ├── stm32h7xx_hal_i2s_ex.c │ ├── stm32h7xx_hal_mdma.c │ ├── stm32h7xx_hal_pcd.c │ ├── stm32h7xx_hal_pcd_ex.c │ ├── stm32h7xx_hal_pwr.c │ ├── stm32h7xx_hal_pwr_ex.c │ ├── stm32h7xx_hal_qspi.c │ ├── stm32h7xx_hal_rcc.c │ ├── stm32h7xx_hal_rcc_ex.c │ ├── stm32h7xx_hal_rtc.c │ ├── stm32h7xx_hal_rtc_ex.c │ ├── stm32h7xx_hal_sai.c │ ├── stm32h7xx_hal_sai_ex.c │ ├── stm32h7xx_hal_sd.c │ ├── stm32h7xx_hal_sd_ex.c │ ├── stm32h7xx_hal_spi.c │ ├── stm32h7xx_hal_spi_ex.c │ ├── stm32h7xx_hal_sram.c │ ├── stm32h7xx_hal_tim.c │ ├── stm32h7xx_hal_tim_ex.c │ ├── stm32h7xx_hal_uart.c │ ├── stm32h7xx_hal_uart_ex.c │ ├── stm32h7xx_ll_delayblock.c │ ├── stm32h7xx_ll_fmc.c │ ├── stm32h7xx_ll_sdmmc.c │ └── stm32h7xx_ll_usb.c ├── H742VGT6 Debug.launch ├── H742VGT6.ioc ├── Images ├── device-back-small.jpg ├── device-front-small.jpg ├── main-screen-small.jpg ├── pcbback-small.jpg └── pcbfront-small.jpg ├── Middlewares ├── Mesh │ ├── hal.c │ ├── hal.h │ ├── halGpio.h │ ├── halPhy.c │ ├── halPhy.h │ ├── halTimer.c │ ├── halTimer.h │ ├── nwk.c │ ├── nwk.h │ ├── nwkCommand.h │ ├── nwkDataReq.c │ ├── nwkDataReq.h │ ├── nwkFrame.c │ ├── nwkFrame.h │ ├── nwkGroup.c │ ├── nwkGroup.h │ ├── nwkRoute.c │ ├── nwkRoute.h │ ├── nwkRouteDiscovery.c │ ├── nwkRouteDiscovery.h │ ├── nwkRx.c │ ├── nwkRx.h │ ├── nwkSecurity.c │ ├── nwkSecurity.h │ ├── nwkTx.c │ ├── nwkTx.h │ ├── phy.c │ ├── phy.h │ ├── sys.c │ ├── sys.h │ ├── sysConfig.h │ ├── sysEncrypt.c │ ├── sysEncrypt.h │ ├── sysTimer.c │ ├── sysTimer.h │ └── sysTypes.h ├── Radio │ ├── subghz_phy_version.h │ ├── sx1276.c │ ├── sx1276.h │ ├── sx1276Regs-Fsk.h │ └── sx1276Regs-LoRa.h ├── 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 │ │ │ │ │ │ └── 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 │ │ │ │ ├── Version.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 │ │ │ │ ├── NoDMA.hpp │ │ │ │ ├── OSWrappers.hpp │ │ │ │ ├── PartialFrameBufferManager.hpp │ │ │ │ └── Types.hpp │ │ │ │ ├── lcd │ │ │ │ └── LCD.hpp │ │ │ │ ├── mixins │ │ │ │ ├── ClickListener.hpp │ │ │ │ ├── Draggable.hpp │ │ │ │ ├── FadeAnimator.hpp │ │ │ │ ├── MoveAnimator.hpp │ │ │ │ └── Snapper.hpp │ │ │ │ ├── transforms │ │ │ │ ├── DisplayTransformation.hpp │ │ │ │ └── TouchCalibration.hpp │ │ │ │ ├── transitions │ │ │ │ ├── BlockTransition.hpp │ │ │ │ ├── CoverTransition.hpp │ │ │ │ ├── NoTransition.hpp │ │ │ │ ├── SlideTransition.hpp │ │ │ │ ├── Transition.hpp │ │ │ │ └── WipeTransition.hpp │ │ │ │ └── widgets │ │ │ │ ├── AbstractButton.hpp │ │ │ │ ├── AnimatedImage.hpp │ │ │ │ ├── AnimationTextureMapper.hpp │ │ │ │ ├── Box.hpp │ │ │ │ ├── BoxWithBorder.hpp │ │ │ │ ├── Button.hpp │ │ │ │ ├── ButtonWithIcon.hpp │ │ │ │ ├── ButtonWithLabel.hpp │ │ │ │ ├── Gauge.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 │ │ │ │ └── graph │ │ │ │ ├── AbstractDataGraph.hpp │ │ │ │ ├── GraphElements.hpp │ │ │ │ ├── GraphLabels.hpp │ │ │ │ ├── GraphScroll.hpp │ │ │ │ ├── GraphWrapAndClear.hpp │ │ │ │ └── GraphWrapAndOverwrite.hpp │ │ ├── source │ │ │ ├── platform │ │ │ │ ├── driver │ │ │ │ │ └── touch │ │ │ │ │ │ └── SDL2TouchController.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 │ │ │ │ ├── Gauge.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 │ │ │ │ ├── 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 │ │ │ │ └── graph │ │ │ │ ├── AbstractDataGraph.cpp │ │ │ │ ├── GraphElements.cpp │ │ │ │ ├── GraphLabels.cpp │ │ │ │ ├── GraphScroll.cpp │ │ │ │ ├── GraphWrapAndClear.cpp │ │ │ │ └── GraphWrapAndOverwrite.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 │ │ │ ├── UnmappedDataFont.cpp.temp │ │ │ └── UnmappedDataFont.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 │ │ │ │ ├── unmapped_data_font_cpp.rb │ │ │ │ └── unmapped_data_font_hpp.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 │ │ │ │ ├── Keil6.x │ │ │ │ │ └── touchgfx_core.lib │ │ │ │ └── gcc │ │ │ │ │ └── libtouchgfx.a │ │ │ ├── cortex_m33 │ │ │ │ ├── IAR8.x │ │ │ │ │ ├── touchgfx_core.a │ │ │ │ │ └── touchgfx_core_release.a │ │ │ │ ├── Keil6.x │ │ │ │ │ └── touchgfx_core.lib │ │ │ │ └── gcc │ │ │ │ │ ├── libtouchgfx-float-abi-hard.a │ │ │ │ │ └── libtouchgfx.a │ │ │ ├── cortex_m4f │ │ │ │ ├── IAR8.x │ │ │ │ │ ├── touchgfx_core.a │ │ │ │ │ └── touchgfx_core_release.a │ │ │ │ ├── Keil │ │ │ │ │ └── touchgfx_core.lib │ │ │ │ ├── Keil6.x │ │ │ │ │ └── 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 │ │ │ │ ├── Keil6.x │ │ │ │ └── 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_V2 │ ├── cmsis_os.h │ ├── cmsis_os2.c │ ├── cmsis_os2.h │ ├── freertos_mpool.h │ └── freertos_os2.h │ ├── croutine.c │ ├── event_groups.c │ ├── include │ ├── FreeRTOS.h │ ├── StackMacros.h │ ├── atomic.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_CM4F │ │ │ ├── port.c │ │ │ └── portmacro.h │ └── MemMang │ │ └── heap_4.c │ ├── queue.c │ ├── stream_buffer.c │ ├── tasks.c │ └── timers.c ├── README.md ├── STM32H742VGTX_FLASH.ld ├── STM32H742VGTX_RAM.ld ├── TouchGFX ├── .gitignore ├── App │ ├── app_touchgfx.c │ └── app_touchgfx.h ├── ApplicationTemplate.touchgfx.part ├── H742VGT6.touchgfx ├── application.config ├── assets │ ├── fonts │ │ ├── arial.ttf │ │ ├── arialbd.ttf │ │ ├── micross.ttf │ │ ├── sanss___.ttf │ │ ├── umath.ttf │ │ └── verdana.ttf │ ├── images │ │ ├── battery_0.png │ │ ├── battery_10.png │ │ ├── battery_2.png │ │ ├── battery_4.png │ │ ├── battery_6.png │ │ ├── battery_8.png │ │ ├── battery_charging.png │ │ ├── chat_icon.png │ │ ├── signal_1.png │ │ ├── signal_2.png │ │ ├── signal_3.png │ │ ├── signal_4.png │ │ ├── signal_5.png │ │ ├── signal_locked.png │ │ ├── signal_off.png │ │ ├── splash.png │ │ └── system_icon.png │ └── texts │ │ └── texts.xlsx ├── config │ ├── gcc │ │ └── app.mk │ └── msvs │ │ └── Application.props ├── generated │ ├── fonts │ │ ├── UnicodeListmicross_10_4.txt │ │ ├── UnicodeListmicross_12_4.txt │ │ ├── UnicodeListmicross_16_4.txt │ │ ├── UnicodeListmicross_30_4.txt │ │ ├── cache │ │ │ ├── ApplicationFontProvider.cache │ │ │ ├── ApplicationFontProviderHpp.cache │ │ │ ├── Font_micross_10_4bppCpp.cache │ │ │ ├── Font_micross_12_4bppCpp.cache │ │ │ ├── Font_micross_16_4bppCpp.cache │ │ │ └── Font_micross_30_4bppCpp.cache │ │ ├── include │ │ │ └── fonts │ │ │ │ ├── ApplicationFontProvider.hpp │ │ │ │ ├── CachedFont.hpp │ │ │ │ ├── FontCache.hpp │ │ │ │ ├── GeneratedFont.hpp │ │ │ │ └── UnmappedDataFont.hpp │ │ └── src │ │ │ ├── ApplicationFontProvider.cpp │ │ │ ├── CachedFont.cpp │ │ │ ├── FontCache.cpp │ │ │ ├── Font_micross_10_4bpp_0.cpp │ │ │ ├── Font_micross_12_4bpp_0.cpp │ │ │ ├── Font_micross_16_4bpp_0.cpp │ │ │ ├── Font_micross_30_4bpp_0.cpp │ │ │ ├── GeneratedFont.cpp │ │ │ ├── Kerning_micross_10_4bpp.cpp │ │ │ ├── Kerning_micross_12_4bpp.cpp │ │ │ ├── Kerning_micross_16_4bpp.cpp │ │ │ ├── Kerning_micross_30_4bpp.cpp │ │ │ ├── Table_micross_10_4bpp.cpp │ │ │ ├── Table_micross_12_4bpp.cpp │ │ │ ├── Table_micross_16_4bpp.cpp │ │ │ ├── Table_micross_30_4bpp.cpp │ │ │ └── UnmappedDataFont.cpp │ ├── gui_generated │ │ ├── include │ │ │ └── gui_generated │ │ │ │ ├── addressbook_screen_screen │ │ │ │ └── addressbook_screenViewBase.hpp │ │ │ │ ├── chat_screen_screen │ │ │ │ └── chat_screenViewBase.hpp │ │ │ │ ├── common │ │ │ │ ├── FrontendApplicationBase.hpp │ │ │ │ ├── FrontendHeapBase.hpp │ │ │ │ └── SimConstants.hpp │ │ │ │ ├── containers │ │ │ │ ├── nav_containerBase.hpp │ │ │ │ └── title_containerBase.hpp │ │ │ │ ├── main_menu_screen │ │ │ │ └── main_menuViewBase.hpp │ │ │ │ ├── setup_screen_screen │ │ │ │ └── setup_screenViewBase.hpp │ │ │ │ └── spash_screen_screen │ │ │ │ └── spash_screenViewBase.hpp │ │ └── src │ │ │ ├── addressbook_screen_screen │ │ │ └── addressbook_screenViewBase.cpp │ │ │ ├── chat_screen_screen │ │ │ └── chat_screenViewBase.cpp │ │ │ ├── common │ │ │ └── FrontendApplicationBase.cpp │ │ │ ├── containers │ │ │ ├── nav_containerBase.cpp │ │ │ └── title_containerBase.cpp │ │ │ ├── main_menu_screen │ │ │ └── main_menuViewBase.cpp │ │ │ ├── setup_screen_screen │ │ │ └── setup_screenViewBase.cpp │ │ │ └── spash_screen_screen │ │ │ └── spash_screenViewBase.cpp │ ├── images │ │ ├── include │ │ │ └── BitmapDatabase.hpp │ │ └── src │ │ │ ├── BitmapDatabase.cpp │ │ │ ├── image_battery_0.cpp │ │ │ ├── image_battery_10.cpp │ │ │ ├── image_battery_2.cpp │ │ │ ├── image_battery_4.cpp │ │ │ ├── image_battery_6.cpp │ │ │ ├── image_battery_8.cpp │ │ │ ├── image_battery_charging.cpp │ │ │ ├── image_chat_icon.cpp │ │ │ ├── image_signal_1.cpp │ │ │ ├── image_signal_2.cpp │ │ │ ├── image_signal_3.cpp │ │ │ ├── image_signal_4.cpp │ │ │ ├── image_signal_5.cpp │ │ │ ├── image_signal_locked.cpp │ │ │ ├── image_signal_off.cpp │ │ │ ├── image_splash.cpp │ │ │ └── image_system_icon.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 │ │ │ ├── addressbook_screen_screen │ │ │ ├── addressbook_screenPresenter.hpp │ │ │ └── addressbook_screenView.hpp │ │ │ ├── chat_screen_screen │ │ │ ├── chat_screenPresenter.hpp │ │ │ └── chat_screenView.hpp │ │ │ ├── common │ │ │ ├── FrontendApplication.hpp │ │ │ └── FrontendHeap.hpp │ │ │ ├── containers │ │ │ ├── nav_container.hpp │ │ │ └── title_container.hpp │ │ │ ├── main_menu_screen │ │ │ ├── main_menuPresenter.hpp │ │ │ └── main_menuView.hpp │ │ │ ├── model │ │ │ ├── Model.hpp │ │ │ └── ModelListener.hpp │ │ │ ├── setup_screen_screen │ │ │ ├── setup_screenPresenter.hpp │ │ │ └── setup_screenView.hpp │ │ │ └── spash_screen_screen │ │ │ ├── spash_screenPresenter.hpp │ │ │ └── spash_screenView.hpp │ └── src │ │ ├── addressbook_screen_screen │ │ ├── addressbook_screenPresenter.cpp │ │ └── addressbook_screenView.cpp │ │ ├── chat_screen_screen │ │ ├── chat_screenPresenter.cpp │ │ └── chat_screenView.cpp │ │ ├── common │ │ └── FrontendApplication.cpp │ │ ├── containers │ │ ├── nav_container.cpp │ │ └── title_container.cpp │ │ ├── main_menu_screen │ │ ├── main_menuPresenter.cpp │ │ └── main_menuView.cpp │ │ ├── model │ │ └── Model.cpp │ │ ├── setup_screen_screen │ │ ├── setup_screenPresenter.cpp │ │ └── setup_screenView.cpp │ │ └── spash_screen_screen │ │ ├── spash_screenPresenter.cpp │ │ └── spash_screenView.cpp └── target │ ├── FocusController.cpp │ ├── FocusController.h │ ├── KeypadController.cpp │ ├── KeypadController.h │ ├── STM32TouchController.cpp │ ├── STM32TouchController.hpp │ ├── TouchGFXGPIO.cpp │ ├── TouchGFXHAL.cpp │ ├── TouchGFXHAL.hpp │ ├── e63_display_driver.c │ ├── e63_display_driver.h │ └── generated │ ├── OSWrappers.cpp │ ├── TouchGFXConfiguration.cpp │ ├── TouchGFXGeneratedHAL.cpp │ └── TouchGFXGeneratedHAL.hpp └── Utilities ├── RFM95W.c ├── RFM95W.h ├── RFM95W_conf.h ├── b_l072z_lrwan1_bus.c ├── b_l072z_lrwan1_bus.h ├── radio.h ├── radio_board_if.h ├── radio_conf.h ├── stm32_lpm.c ├── stm32_lpm.h ├── stm32_mem.c ├── stm32_mem.h ├── stm32_systime.c ├── stm32_systime.h ├── stm32_timer.c ├── stm32_timer.h ├── sys_app.h ├── sys_conf.h ├── sys_debug.h └── timer.h /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | /Release/ 3 | -------------------------------------------------------------------------------- /.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/.mxproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /.settings/stm32cubeide.project.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/.settings/stm32cubeide.project.prefs -------------------------------------------------------------------------------- /Core/Inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /Core/Inc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/crc.h -------------------------------------------------------------------------------- /Core/Inc/dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/dma2d.h -------------------------------------------------------------------------------- /Core/Inc/fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/fmc.h -------------------------------------------------------------------------------- /Core/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/gpio.h -------------------------------------------------------------------------------- /Core/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/i2c.h -------------------------------------------------------------------------------- /Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/main.h -------------------------------------------------------------------------------- /Core/Inc/main2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/main2.h -------------------------------------------------------------------------------- /Core/Inc/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/platform.h -------------------------------------------------------------------------------- /Core/Inc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/rtc.h -------------------------------------------------------------------------------- /Core/Inc/rtc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/rtc_if.h -------------------------------------------------------------------------------- /Core/Inc/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/spi.h -------------------------------------------------------------------------------- /Core/Inc/stm32h7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/stm32h7xx_hal_conf.h -------------------------------------------------------------------------------- /Core/Inc/stm32h7xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/stm32h7xx_it.h -------------------------------------------------------------------------------- /Core/Inc/stm32h7xx_ll_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/stm32h7xx_ll_cortex.h -------------------------------------------------------------------------------- /Core/Inc/stm32h7xx_ll_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/stm32h7xx_ll_rtc.h -------------------------------------------------------------------------------- /Core/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/tim.h -------------------------------------------------------------------------------- /Core/Inc/utilities_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Inc/utilities_conf.h -------------------------------------------------------------------------------- /Core/Src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/crc.c -------------------------------------------------------------------------------- /Core/Src/dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/dma2d.c -------------------------------------------------------------------------------- /Core/Src/fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/fmc.c -------------------------------------------------------------------------------- /Core/Src/freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/freertos.c -------------------------------------------------------------------------------- /Core/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/gpio.c -------------------------------------------------------------------------------- /Core/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/i2c.c -------------------------------------------------------------------------------- /Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/main.c -------------------------------------------------------------------------------- /Core/Src/main2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/main2.cpp -------------------------------------------------------------------------------- /Core/Src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/rtc.c -------------------------------------------------------------------------------- /Core/Src/rtc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/rtc_if.c -------------------------------------------------------------------------------- /Core/Src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/spi.c -------------------------------------------------------------------------------- /Core/Src/stm32h7xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/stm32h7xx_hal_msp.c -------------------------------------------------------------------------------- /Core/Src/stm32h7xx_hal_timebase_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/stm32h7xx_hal_timebase_tim.c -------------------------------------------------------------------------------- /Core/Src/stm32h7xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/stm32h7xx_it.c -------------------------------------------------------------------------------- /Core/Src/stm32h7xx_ll_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/stm32h7xx_ll_rtc.c -------------------------------------------------------------------------------- /Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/syscalls.c -------------------------------------------------------------------------------- /Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/sysmem.c -------------------------------------------------------------------------------- /Core/Src/system_stm32h7xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/system_stm32h7xx.c -------------------------------------------------------------------------------- /Core/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Src/tim.c -------------------------------------------------------------------------------- /Core/Startup/startup_stm32h742vgtx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Startup/startup_stm32h742vgtx.s -------------------------------------------------------------------------------- /Core/Tests/radio_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Tests/radio_test.c -------------------------------------------------------------------------------- /Core/Tests/radio_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Core/Tests/radio_test.h -------------------------------------------------------------------------------- /Drivers/BSP/Inc/MC2PA8201.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Inc/MC2PA8201.h -------------------------------------------------------------------------------- /Drivers/BSP/Inc/MC2PA8201/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Inc/MC2PA8201/colors.h -------------------------------------------------------------------------------- /Drivers/BSP/Inc/MC2PA8201/font6x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Inc/MC2PA8201/font6x8.h -------------------------------------------------------------------------------- /Drivers/BSP/Inc/MC2PA8201/font8x14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Inc/MC2PA8201/font8x14.h -------------------------------------------------------------------------------- /Drivers/BSP/Inc/MC2PA8201/font8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Inc/MC2PA8201/font8x8.h -------------------------------------------------------------------------------- /Drivers/BSP/Inc/MP2667.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Inc/MP2667.h -------------------------------------------------------------------------------- /Drivers/BSP/Inc/SX1509B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Inc/SX1509B.h -------------------------------------------------------------------------------- /Drivers/BSP/Src/MC2PA8201.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Src/MC2PA8201.c -------------------------------------------------------------------------------- /Drivers/BSP/Src/MP2667.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Src/MP2667.c -------------------------------------------------------------------------------- /Drivers/BSP/Src/SX1509B.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/BSP/Src/SX1509B.c -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h742xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h742xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang_ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/cmsis_armclang_ltm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv81mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_armv81mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm35p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_cm35p.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_adc.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_adc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_adc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_crc.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_crc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_crc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma2d.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2s.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2s_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2s_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pcd.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_qspi.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rtc.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rtc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rtc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sai.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sai_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sai_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sd.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sd_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_spi.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_spi_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_spi_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_sram.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart_ex.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_adc.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_delayblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_delayblock.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_fmc.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_sdmmc.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_usb.h -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_adc.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_adc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_adc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_crc.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_crc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_crc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma2d.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2s.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2s_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2s_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pcd.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pcd_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_qspi.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rtc.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rtc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rtc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sai.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sai_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sai_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sd.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sd_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_spi.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_spi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_spi_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_sram.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_uart_ex.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_ll_delayblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_ll_delayblock.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_ll_fmc.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_ll_sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_ll_sdmmc.c -------------------------------------------------------------------------------- /Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_ll_usb.c -------------------------------------------------------------------------------- /H742VGT6 Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/H742VGT6 Debug.launch -------------------------------------------------------------------------------- /H742VGT6.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/H742VGT6.ioc -------------------------------------------------------------------------------- /Images/device-back-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Images/device-back-small.jpg -------------------------------------------------------------------------------- /Images/device-front-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Images/device-front-small.jpg -------------------------------------------------------------------------------- /Images/main-screen-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Images/main-screen-small.jpg -------------------------------------------------------------------------------- /Images/pcbback-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Images/pcbback-small.jpg -------------------------------------------------------------------------------- /Images/pcbfront-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Images/pcbfront-small.jpg -------------------------------------------------------------------------------- /Middlewares/Mesh/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/hal.c -------------------------------------------------------------------------------- /Middlewares/Mesh/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/hal.h -------------------------------------------------------------------------------- /Middlewares/Mesh/halGpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/halGpio.h -------------------------------------------------------------------------------- /Middlewares/Mesh/halPhy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/halPhy.c -------------------------------------------------------------------------------- /Middlewares/Mesh/halPhy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/halPhy.h -------------------------------------------------------------------------------- /Middlewares/Mesh/halTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/halTimer.c -------------------------------------------------------------------------------- /Middlewares/Mesh/halTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/halTimer.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwk.c -------------------------------------------------------------------------------- /Middlewares/Mesh/nwk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwk.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkCommand.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkDataReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkDataReq.c -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkDataReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkDataReq.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkFrame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkFrame.c -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkFrame.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkGroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkGroup.c -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkGroup.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkRoute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkRoute.c -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkRoute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkRoute.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkRouteDiscovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkRouteDiscovery.c -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkRouteDiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkRouteDiscovery.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkRx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkRx.c -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkRx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkRx.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkSecurity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkSecurity.c -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkSecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkSecurity.h -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkTx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkTx.c -------------------------------------------------------------------------------- /Middlewares/Mesh/nwkTx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/nwkTx.h -------------------------------------------------------------------------------- /Middlewares/Mesh/phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/phy.c -------------------------------------------------------------------------------- /Middlewares/Mesh/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/phy.h -------------------------------------------------------------------------------- /Middlewares/Mesh/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/sys.c -------------------------------------------------------------------------------- /Middlewares/Mesh/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/sys.h -------------------------------------------------------------------------------- /Middlewares/Mesh/sysConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/sysConfig.h -------------------------------------------------------------------------------- /Middlewares/Mesh/sysEncrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/sysEncrypt.c -------------------------------------------------------------------------------- /Middlewares/Mesh/sysEncrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/sysEncrypt.h -------------------------------------------------------------------------------- /Middlewares/Mesh/sysTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/sysTimer.c -------------------------------------------------------------------------------- /Middlewares/Mesh/sysTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/sysTimer.h -------------------------------------------------------------------------------- /Middlewares/Mesh/sysTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Mesh/sysTypes.h -------------------------------------------------------------------------------- /Middlewares/Radio/subghz_phy_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Radio/subghz_phy_version.h -------------------------------------------------------------------------------- /Middlewares/Radio/sx1276.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Radio/sx1276.c -------------------------------------------------------------------------------- /Middlewares/Radio/sx1276.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Radio/sx1276.h -------------------------------------------------------------------------------- /Middlewares/Radio/sx1276Regs-Fsk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Radio/sx1276Regs-Fsk.h -------------------------------------------------------------------------------- /Middlewares/Radio/sx1276Regs-LoRa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Radio/sx1276Regs-LoRa.h -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/common/AbstractPartition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/common/AbstractPartition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/common/Meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/common/Meta.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/common/Partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/common/Partition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/common/TouchGFXInit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/common/TouchGFXInit.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/mvp/MVPApplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/mvp/MVPApplication.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/mvp/MVPHeap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/mvp/MVPHeap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/mvp/Presenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/mvp/Presenter.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/mvp/View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/mvp/View.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/core/MCUInstrumentation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/platform/core/MCUInstrumentation.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/button/ButtonController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/touch/NoTouchController.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/touch/SDLTouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/platform/driver/touch/SDLTouchController.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/platform/driver/touch/TouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/platform/hal/simulator/sdl2/HALSDL2.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Application.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Bitmap.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Callback.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Color.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/ConstFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/ConstFont.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Drawable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Drawable.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/EasingEquations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/EasingEquations.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Event.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Font.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/FontManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/FontManager.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/InternalFlashFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/InternalFlashFont.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/JSMOCHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/JSMOCHelper.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Math3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Math3D.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Screen.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/TextProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/TextProvider.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Texts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Texts.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/TextureMapTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/TextureMapTypes.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/TypedText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/TypedText.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/UIEventListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/UIEventListener.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Unicode.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Utils.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/Version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/Version.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Cell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Outline.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Renderer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/canvas_widget_renderer/Scanline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/CacheableContainer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/Container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/Container.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ListLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ListLayout.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ModalWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ModalWindow.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ScrollableContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ScrollableContainer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/SlideMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/SlideMenu.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/Slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/Slider.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/SwipeContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/SwipeContainer.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ZoomAnimationImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/ZoomAnimationImage.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/Buttons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/buttons/Buttons.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/clock/AbstractClock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/clock/DigitalClock.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/containers/scrollers/ScrollList.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/events/ClickEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/events/ClickEvent.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/events/DragEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/events/DragEvent.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/events/GestureEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/events/GestureEvent.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Atomic.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/BlitOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/BlitOp.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/BoardConfiguration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/BoardConfiguration.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Buttons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Buttons.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Config.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/DMA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/DMA.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/FlashDataReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/FlashDataReader.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/FrameBufferAllocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/FrameBufferAllocator.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/GPIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/GPIO.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Gestures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Gestures.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/HAL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/HAL.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/NoDMA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/NoDMA.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/OSWrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/OSWrappers.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/PartialFrameBufferManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/PartialFrameBufferManager.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/hal/Types.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/lcd/LCD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/lcd/LCD.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/ClickListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/ClickListener.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/Draggable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/Draggable.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/FadeAnimator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/FadeAnimator.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/MoveAnimator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/MoveAnimator.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/Snapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/mixins/Snapper.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transforms/TouchCalibration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transforms/TouchCalibration.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/BlockTransition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/BlockTransition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/CoverTransition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/CoverTransition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/NoTransition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/NoTransition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/SlideTransition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/SlideTransition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/Transition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/Transition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/WipeTransition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/transitions/WipeTransition.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AbstractButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AbstractButton.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AnimatedImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AnimatedImage.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AnimationTextureMapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/AnimationTextureMapper.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Box.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/BoxWithBorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/BoxWithBorder.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Button.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ButtonWithIcon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ButtonWithIcon.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ButtonWithLabel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ButtonWithLabel.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Gauge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Gauge.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Image.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Keyboard.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/PixelDataWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/PixelDataWidget.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RadioButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RadioButton.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RadioButtonGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RadioButtonGroup.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RepeatButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/RepeatButton.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ScalableImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ScalableImage.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/SnapshotWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/SnapshotWidget.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextArea.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextAreaWithWildcard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextAreaWithWildcard.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextureMapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TextureMapper.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TiledImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TiledImage.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ToggleButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/ToggleButton.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TouchArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/TouchArea.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/Widget.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractPainter.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/AbstractShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterABGR2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB8888.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterARGB8888.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBGRA2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBGRA2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterBW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY2.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterGRAY4.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB565.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB565.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB888.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGB888.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGBA2222.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/PainterRGBA2222.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/canvas/Shape.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/AbstractDataGraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/AbstractDataGraph.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/GraphElements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/GraphElements.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/GraphLabels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/GraphLabels.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/GraphScroll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/GraphScroll.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/GraphWrapAndClear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/include/touchgfx/widgets/graph/GraphWrapAndClear.hpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/platform/driver/touch/SDL2TouchController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/platform/driver/touch/SDL2TouchController.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/platform/hal/simulator/sdl2/HALSDL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/CacheableContainer.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/Container.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ListLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ListLayout.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ModalWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ModalWindow.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ScrollableContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ScrollableContainer.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/SlideMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/SlideMenu.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/Slider.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/SwipeContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/SwipeContainer.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ZoomAnimationImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/ZoomAnimationImage.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/clock/AbstractClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/clock/DigitalClock.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/containers/scrollers/ScrollWheel.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AbstractButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AbstractButton.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AnimatedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AnimatedImage.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AnimationTextureMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/AnimationTextureMapper.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Box.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/BoxWithBorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/BoxWithBorder.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Button.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ButtonWithIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ButtonWithIcon.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ButtonWithLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ButtonWithLabel.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Gauge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Gauge.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Image.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/Keyboard.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/PixelDataWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/PixelDataWidget.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/RadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/RadioButton.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/RepeatButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/RepeatButton.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ScalableImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ScalableImage.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/SnapshotWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/SnapshotWidget.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextArea.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextAreaWithWildcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextAreaWithWildcard.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextureMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TextureMapper.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TiledImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TiledImage.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/ToggleButton.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TouchArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/TouchArea.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterBW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractPainterBW.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/AbstractShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterABGR2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB8888.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterARGB8888.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBGRA2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBGRA2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterBW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY2.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterGRAY4.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB565.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB888.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGB888.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGBA2222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/canvas/PainterRGBA2222.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/graph/GraphElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/graph/GraphElements.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/graph/GraphLabels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/graph/GraphLabels.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/graph/GraphScroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/source/touchgfx/widgets/graph/GraphScroll.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/fontconvert/build/linux/fontconvert.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/FontCache.hpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/LanguageXX.cpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/LanguageXX.cpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/Texts.cpp.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/Templates/Texts.cpp.temp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/cached_font_cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/fonts_cpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/languages_bin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/texts_cpp.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/emitters/unicodes_txt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/file_io.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/generator.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/outputter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/outputter.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/sanitizer.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/string_collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/text_entries.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/lib/typographies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/framework/tools/textconvert/lib/typographies.rb -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/framework/tools/textconvert/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m0/Keil/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m0/Keil6.x/touchgfx_core.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m0/Keil6.x/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m0/gcc/libtouchgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m0/gcc/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m33/IAR8.x/touchgfx_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m33/IAR8.x/touchgfx_core.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m33/IAR8.x/touchgfx_core_release.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m33/IAR8.x/touchgfx_core_release.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m33/Keil6.x/touchgfx_core.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m33/Keil6.x/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m33/gcc/libtouchgfx-float-abi-hard.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m33/gcc/libtouchgfx-float-abi-hard.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m33/gcc/libtouchgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m33/gcc/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m4f/IAR8.x/touchgfx_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m4f/Keil/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m4f/Keil6.x/touchgfx_core.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m4f/Keil6.x/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m4f/gcc/libtouchgfx-float-abi-hard.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/Keil/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m7/Keil6.x/touchgfx_core.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/Keil6.x/touchgfx_core.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/core/cortex_m7/gcc/libtouchgfx-float-abi-hard.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/core/cortex_m7/gcc/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/linux/libtouchgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/linux/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/linux64/libSDL2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/linux64/libSDL2.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/linux64/libSDL2_image.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/linux64/libSDL2_image.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/README-SDL.txt -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2.dll -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2_image.dll -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/SDL2_image.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/dll2lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/dll2lib.bat -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/libSDL2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/libSDL2.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/libSDL2_image.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/libSDL2_image.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/libpng16-16.dll -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/sdl2/win32/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/sdl2/win32/zlib1.dll -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/mingw32/libtouchgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/mingw32/libtouchgfx.a -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v100.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v100.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v100_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v100_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v110.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v110.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v110_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v110_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v120.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v120.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v120_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v120_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v140.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v140.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v140_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v140_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v141.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v141.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v141_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v141_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v142.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v142.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v142_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/lib/win/msvs/libtouchgfx_v142_debug.lib -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/os/OSWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/os/OSWrappers.cpp -------------------------------------------------------------------------------- /Middlewares/ST/touchgfx/os/OSWrappers_cmsis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/ST/touchgfx/os/OSWrappers_cmsis.cpp -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/freertos_mpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/freertos_mpool.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/freertos_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/freertos_os2.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/croutine.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/atomic.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/list.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/message_buffer.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/task.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/list.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/queue.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/tasks.c -------------------------------------------------------------------------------- /Middlewares/Third_Party/FreeRTOS/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Middlewares/Third_Party/FreeRTOS/Source/timers.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/README.md -------------------------------------------------------------------------------- /STM32H742VGTX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/STM32H742VGTX_FLASH.ld -------------------------------------------------------------------------------- /STM32H742VGTX_RAM.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/STM32H742VGTX_RAM.ld -------------------------------------------------------------------------------- /TouchGFX/.gitignore: -------------------------------------------------------------------------------- 1 | /simulator/ 2 | /build/ 3 | -------------------------------------------------------------------------------- /TouchGFX/App/app_touchgfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/App/app_touchgfx.c -------------------------------------------------------------------------------- /TouchGFX/App/app_touchgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/App/app_touchgfx.h -------------------------------------------------------------------------------- /TouchGFX/ApplicationTemplate.touchgfx.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/ApplicationTemplate.touchgfx.part -------------------------------------------------------------------------------- /TouchGFX/H742VGT6.touchgfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/H742VGT6.touchgfx -------------------------------------------------------------------------------- /TouchGFX/application.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/application.config -------------------------------------------------------------------------------- /TouchGFX/assets/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/fonts/arial.ttf -------------------------------------------------------------------------------- /TouchGFX/assets/fonts/arialbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/fonts/arialbd.ttf -------------------------------------------------------------------------------- /TouchGFX/assets/fonts/micross.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/fonts/micross.ttf -------------------------------------------------------------------------------- /TouchGFX/assets/fonts/sanss___.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/fonts/sanss___.ttf -------------------------------------------------------------------------------- /TouchGFX/assets/fonts/umath.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/fonts/umath.ttf -------------------------------------------------------------------------------- /TouchGFX/assets/fonts/verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/fonts/verdana.ttf -------------------------------------------------------------------------------- /TouchGFX/assets/images/battery_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/battery_0.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/battery_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/battery_10.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/battery_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/battery_2.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/battery_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/battery_4.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/battery_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/battery_6.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/battery_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/battery_8.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/battery_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/battery_charging.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/chat_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/chat_icon.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/signal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/signal_1.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/signal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/signal_2.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/signal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/signal_3.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/signal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/signal_4.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/signal_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/signal_5.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/signal_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/signal_locked.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/signal_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/signal_off.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/splash.png -------------------------------------------------------------------------------- /TouchGFX/assets/images/system_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/images/system_icon.png -------------------------------------------------------------------------------- /TouchGFX/assets/texts/texts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/assets/texts/texts.xlsx -------------------------------------------------------------------------------- /TouchGFX/config/gcc/app.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/config/gcc/app.mk -------------------------------------------------------------------------------- /TouchGFX/config/msvs/Application.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/config/msvs/Application.props -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListmicross_10_4.txt: -------------------------------------------------------------------------------- 1 | 63 -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListmicross_12_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/UnicodeListmicross_12_4.txt -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListmicross_16_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/UnicodeListmicross_16_4.txt -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/UnicodeListmicross_30_4.txt: -------------------------------------------------------------------------------- 1 | 63 -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/ApplicationFontProvider.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/cache/ApplicationFontProvider.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/ApplicationFontProviderHpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/cache/ApplicationFontProviderHpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_micross_10_4bppCpp.cache: -------------------------------------------------------------------------------- 1 | BA 2 | F0 3 | 63 4 | -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_micross_12_4bppCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/cache/Font_micross_12_4bppCpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_micross_16_4bppCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/cache/Font_micross_16_4bppCpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/cache/Font_micross_30_4bppCpp.cache: -------------------------------------------------------------------------------- 1 | BA 2 | F0 3 | 63 4 | -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/include/fonts/ApplicationFontProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/include/fonts/ApplicationFontProvider.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/include/fonts/CachedFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/include/fonts/CachedFont.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/include/fonts/FontCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/include/fonts/FontCache.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/include/fonts/GeneratedFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/include/fonts/GeneratedFont.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/include/fonts/UnmappedDataFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/include/fonts/UnmappedDataFont.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/ApplicationFontProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/ApplicationFontProvider.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/CachedFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/CachedFont.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/FontCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/FontCache.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_micross_10_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Font_micross_10_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_micross_12_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Font_micross_12_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_micross_16_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Font_micross_16_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Font_micross_30_4bpp_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Font_micross_30_4bpp_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/GeneratedFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/GeneratedFont.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_micross_10_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Kerning_micross_10_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_micross_12_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Kerning_micross_12_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_micross_16_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Kerning_micross_16_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Kerning_micross_30_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Kerning_micross_30_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_micross_10_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Table_micross_10_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_micross_12_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Table_micross_12_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_micross_16_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Table_micross_16_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/Table_micross_30_4bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/Table_micross_30_4bpp.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/fonts/src/UnmappedDataFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/fonts/src/UnmappedDataFont.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/include/gui_generated/common/FrontendHeapBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/gui_generated/include/gui_generated/common/SimConstants.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/chat_screen_screen/chat_screenViewBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/gui_generated/src/chat_screen_screen/chat_screenViewBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/common/FrontendApplicationBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/gui_generated/src/common/FrontendApplicationBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/containers/nav_containerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/gui_generated/src/containers/nav_containerBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/containers/title_containerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/gui_generated/src/containers/title_containerBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/main_menu_screen/main_menuViewBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/gui_generated/src/main_menu_screen/main_menuViewBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/setup_screen_screen/setup_screenViewBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/gui_generated/src/setup_screen_screen/setup_screenViewBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/gui_generated/src/spash_screen_screen/spash_screenViewBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/gui_generated/src/spash_screen_screen/spash_screenViewBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/include/BitmapDatabase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/include/BitmapDatabase.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/BitmapDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/BitmapDatabase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_battery_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_battery_0.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_battery_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_battery_10.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_battery_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_battery_2.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_battery_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_battery_4.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_battery_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_battery_6.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_battery_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_battery_8.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_battery_charging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_battery_charging.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_chat_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_chat_icon.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_signal_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_signal_1.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_signal_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_signal_2.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_signal_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_signal_3.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_signal_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_signal_4.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_signal_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_signal_5.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_signal_locked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_signal_locked.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_signal_off.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_signal_off.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_splash.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/images/src/image_system_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/images/src/image_system_icon.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/simulator/gcc/Makefile -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/include/simulator/mainBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/simulator/include/simulator/mainBase.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/msvs/touchgfx.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/simulator/msvs/touchgfx.props -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/msvs/touchgfx_prebuild.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/simulator/msvs/touchgfx_prebuild.targets -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/msvs/touchgfx_sdl2.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/simulator/msvs/touchgfx_sdl2.props -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/src/mainBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/simulator/src/mainBase.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/simulator/touchgfx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/simulator/touchgfx.res -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/LanguageCpp_Gb.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/texts/cache/LanguageCpp_Gb.cache -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/TextKeysAndLanguages.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/texts/cache/TextKeysAndLanguages.cache -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/TextsCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/texts/cache/TextsCpp.cache -------------------------------------------------------------------------------- /TouchGFX/generated/texts/cache/TypedTextDatabaseCpp.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/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/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/texts/cache/options.cache -------------------------------------------------------------------------------- /TouchGFX/generated/texts/include/texts/TextKeysAndLanguages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/texts/include/texts/TextKeysAndLanguages.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/texts/include/texts/TypedTextDatabase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/texts/include/texts/TypedTextDatabase.hpp -------------------------------------------------------------------------------- /TouchGFX/generated/texts/src/LanguageGb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/texts/src/LanguageGb.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/texts/src/Texts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/texts/src/Texts.cpp -------------------------------------------------------------------------------- /TouchGFX/generated/texts/src/TypedTextDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/generated/texts/src/TypedTextDatabase.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/addressbook_screen_screen/addressbook_screenPresenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/addressbook_screen_screen/addressbook_screenPresenter.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/addressbook_screen_screen/addressbook_screenView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/addressbook_screen_screen/addressbook_screenView.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/chat_screen_screen/chat_screenPresenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/chat_screen_screen/chat_screenPresenter.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/chat_screen_screen/chat_screenView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/chat_screen_screen/chat_screenView.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/common/FrontendApplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/common/FrontendApplication.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/common/FrontendHeap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/common/FrontendHeap.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/containers/nav_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/containers/nav_container.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/containers/title_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/containers/title_container.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/main_menu_screen/main_menuPresenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/main_menu_screen/main_menuPresenter.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/main_menu_screen/main_menuView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/main_menu_screen/main_menuView.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/model/Model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/model/Model.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/model/ModelListener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/model/ModelListener.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/setup_screen_screen/setup_screenPresenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/setup_screen_screen/setup_screenPresenter.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/setup_screen_screen/setup_screenView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/setup_screen_screen/setup_screenView.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/spash_screen_screen/spash_screenPresenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/spash_screen_screen/spash_screenPresenter.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/include/gui/spash_screen_screen/spash_screenView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/include/gui/spash_screen_screen/spash_screenView.hpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/addressbook_screen_screen/addressbook_screenPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/addressbook_screen_screen/addressbook_screenPresenter.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/addressbook_screen_screen/addressbook_screenView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/addressbook_screen_screen/addressbook_screenView.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/chat_screen_screen/chat_screenPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/chat_screen_screen/chat_screenPresenter.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/chat_screen_screen/chat_screenView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/chat_screen_screen/chat_screenView.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/common/FrontendApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/common/FrontendApplication.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/containers/nav_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/containers/nav_container.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/containers/title_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/containers/title_container.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/main_menu_screen/main_menuPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/main_menu_screen/main_menuPresenter.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/main_menu_screen/main_menuView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/main_menu_screen/main_menuView.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/model/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/model/Model.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/setup_screen_screen/setup_screenPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/setup_screen_screen/setup_screenPresenter.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/setup_screen_screen/setup_screenView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/setup_screen_screen/setup_screenView.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/spash_screen_screen/spash_screenPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/spash_screen_screen/spash_screenPresenter.cpp -------------------------------------------------------------------------------- /TouchGFX/gui/src/spash_screen_screen/spash_screenView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/gui/src/spash_screen_screen/spash_screenView.cpp -------------------------------------------------------------------------------- /TouchGFX/target/FocusController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/FocusController.cpp -------------------------------------------------------------------------------- /TouchGFX/target/FocusController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/FocusController.h -------------------------------------------------------------------------------- /TouchGFX/target/KeypadController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/KeypadController.cpp -------------------------------------------------------------------------------- /TouchGFX/target/KeypadController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/KeypadController.h -------------------------------------------------------------------------------- /TouchGFX/target/STM32TouchController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/STM32TouchController.cpp -------------------------------------------------------------------------------- /TouchGFX/target/STM32TouchController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/STM32TouchController.hpp -------------------------------------------------------------------------------- /TouchGFX/target/TouchGFXGPIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/TouchGFXGPIO.cpp -------------------------------------------------------------------------------- /TouchGFX/target/TouchGFXHAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/TouchGFXHAL.cpp -------------------------------------------------------------------------------- /TouchGFX/target/TouchGFXHAL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/TouchGFXHAL.hpp -------------------------------------------------------------------------------- /TouchGFX/target/e63_display_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/e63_display_driver.c -------------------------------------------------------------------------------- /TouchGFX/target/e63_display_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/e63_display_driver.h -------------------------------------------------------------------------------- /TouchGFX/target/generated/OSWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/generated/OSWrappers.cpp -------------------------------------------------------------------------------- /TouchGFX/target/generated/TouchGFXConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/generated/TouchGFXConfiguration.cpp -------------------------------------------------------------------------------- /TouchGFX/target/generated/TouchGFXGeneratedHAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/generated/TouchGFXGeneratedHAL.cpp -------------------------------------------------------------------------------- /TouchGFX/target/generated/TouchGFXGeneratedHAL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/TouchGFX/target/generated/TouchGFXGeneratedHAL.hpp -------------------------------------------------------------------------------- /Utilities/RFM95W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/RFM95W.c -------------------------------------------------------------------------------- /Utilities/RFM95W.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/RFM95W.h -------------------------------------------------------------------------------- /Utilities/RFM95W_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/RFM95W_conf.h -------------------------------------------------------------------------------- /Utilities/b_l072z_lrwan1_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/b_l072z_lrwan1_bus.c -------------------------------------------------------------------------------- /Utilities/b_l072z_lrwan1_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/b_l072z_lrwan1_bus.h -------------------------------------------------------------------------------- /Utilities/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/radio.h -------------------------------------------------------------------------------- /Utilities/radio_board_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/radio_board_if.h -------------------------------------------------------------------------------- /Utilities/radio_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/radio_conf.h -------------------------------------------------------------------------------- /Utilities/stm32_lpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/stm32_lpm.c -------------------------------------------------------------------------------- /Utilities/stm32_lpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/stm32_lpm.h -------------------------------------------------------------------------------- /Utilities/stm32_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/stm32_mem.c -------------------------------------------------------------------------------- /Utilities/stm32_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/stm32_mem.h -------------------------------------------------------------------------------- /Utilities/stm32_systime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/stm32_systime.c -------------------------------------------------------------------------------- /Utilities/stm32_systime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/stm32_systime.h -------------------------------------------------------------------------------- /Utilities/stm32_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/stm32_timer.c -------------------------------------------------------------------------------- /Utilities/stm32_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/stm32_timer.h -------------------------------------------------------------------------------- /Utilities/sys_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/sys_app.h -------------------------------------------------------------------------------- /Utilities/sys_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/sys_conf.h -------------------------------------------------------------------------------- /Utilities/sys_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/sys_debug.h -------------------------------------------------------------------------------- /Utilities/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrevorAttema/OTGMessenger/HEAD/Utilities/timer.h --------------------------------------------------------------------------------