Hi,After creating a project by touchgfx designer for stm32h747 it work fine with ST display.I'm using a display with no Graphic ram and it work only with video mode.my display work fine with a single buffer video mode example.(after a minor change)Fo...
Posted on August 28, 2016 at 17:17
Hi all.
I'm getting timeout from function:
aci_gatt_update_char_value(...)
even client get notify value as expected.
description:
Add Characteristic:
ret = aci_gatt_add_char(ServiceHandle, ...
Hi ,Finally the display is working as expected. I had wrong configuration :I changed pLayerCfg.PixelFormat = LTDC_PIXEL_FORMAT_ARGB8888 ; topLayerCfg.PixelFormat = LTDC_PIXEL_FORMAT_RGB888;Than the display work as I expected.(According to Display ...
Thanks for you response.I'm using LCD-MIPI example I found in forums for using video mode.Also using some code parts from single buffer video mode ST example.I changed the background to green and it look fine.I'm using UTIL_LCD_Clear(UTIL_LCD_COLOR_G...
Posted on August 29, 2016 at 09:15solutions are:1) add _time_delay(1) before HCI_Process();2) or using code below:task1{ g_start_indicate = true aci_gatt_update_char_value() ; set_event(&events, START_INDICATE_EVENT_BIT);}task2{ ...wait for ...
Posted on August 29, 2016 at 09:06Hi, i found the problem and it's a kind of ST firmware bug.Explanation:I'm using MQX OS.All ST examples i found running HCI_Process() in while loop.while(1){ HCI_Process() ... aci_gatt_update_char_value(...)}I'm us...