drivers/ft5x06: Add a polled mode of operation for the FT5x06 in attempt to work around the fact that the LPCXpresso-LPC54628 chose a non-interrupt pin for the FT5x06 interrupt. Driver is still not yet functional.

This commit is contained in:
Gregory Nutt
2017-12-18 08:58:07 -06:00
parent 783d2cabee
commit 23dfc0bf06
6 changed files with 218 additions and 23 deletions
+2
View File
@@ -116,10 +116,12 @@ struct ft5x06_config_s
*/
#ifndef CONFIG_FT5X06_POLLMODE
int (*attach)(FAR const struct ft5x06_config_s *config, xcpt_t isr,
FAR void *arg);
void (*enable)(FAR const struct ft5x06_config_s *config, bool enable);
void (*clear)(FAR const struct ft5x06_config_s *config);
#endif
void (*wakeup)(FAR const struct ft5x06_config_s *config);
void (*nreset)(FAR const struct ft5x06_config_s *config,
bool state);