FT5426 Not respond MCU
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-10-06 3:35 AM
I am working with stm32f7-custom board using 8inch touch screen(microe3902) & FT5426 capacitive touch controller
FT5426 not respond properly
- Labels:
-
DEBUG
-
I2C
-
STM32F7 Series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-10-06 4:48 AM
That's unfortunate.
You'll likely need to break out the debugger, along with a scope or logic analyzer, and review behaviour vs that in the datasheet/manual.​
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-10-06 5:02 AM
yes it was the i2c timing register issue:
My previous configuration;
#define DISCOVERY_I2Cx_TIMING ((uint32_t)0x40912732)
i2c_handler->Init.Timing = DISCOVERY_I2Cx_TIMING;
after changes this value:
#define DISCOVERY_I2Cx_TIMING ((uint32_t)0x00200922)
i2c_handler->Init.Timing = DISCOVERY_I2Cx_TIMING;
touch was one time sensed, how to find this value ??
