I created two screens and did the actions to change the screen. But changing the screen does not work correctly.Added an extra buffer for animationuint16_t buf_ram [160*128];using namespace touchgfx;namespace { LOCATION_PRAGMA("TouchGFX_Framebuffer"...
When using scroll wheel with text area, the controller falls into a hard fault, when I use the function scrollWheel1.animateToItem(ItemCounter, 30). No problem with other widgetshttps://github.com/vitamin18/touchgfx_example.git
I am using stm32f746 nucleo board and display with fmc!his is how it worksvoid Screen1View::handleTickEvent(){ tickCounter++; if(tickCounter > 60){ tickCounter = 0; scrollWheel.animateToItem(scrollWheel.getSelectedItem() + 1, 0);// application().goto...
Hi,scrollWheelListItems[containerIndex].yourcustomsetcolor(1234);How to find the container index? I have the following settings:scrollWheel.setNumberOfItems(100);touchgfx::DrawableListItems<ChannelContainer, 2> scrollWheelListItems;
Hi! In the HAL.hpp file, in the uint16_t* getClientFrameBuffer() function, change frameBuffer1 to frameBuffer0! helped me.uint16_t* getClientFrameBuffer() { if (USE_DOUBLE_BUFFERING && getTFTFrameBuffer() == frameBuffer0) { return frameB...
Created a project for the display of LTDS and the buffer is stored in the sdram. Everything works perfectly. Under the fms and the buffer in the ram does not work.
It's also bad with version 4.13Doesn't go to second screen, interrupt handleTickEvent() stops working. Interrupt timer for touchgfx_signalVSyncTimer () works!My settings#include <touchgfx/hal/OSWrappers.hpp>#include "stm32f7xx.h"#include "../../oled1...