fpc1020_input.h 656 B

12345678910111213141516171819202122
  1. /* FPC1020 Touch sensor driver
  2. *
  3. * Copyright (c) 2013,2014 Fingerprint Cards AB <tech@fingerprints.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License Version 2
  7. * as published by the Free Software Foundation.
  8. */
  9. #ifndef LINUX_SPI_FPC1020_INPUT_H
  10. #define LINUX_SPI_FPC1020_INPUT_H
  11. extern int fpc1020_input_init(fpc1020_data_t *fpc1020);
  12. extern void fpc1020_input_destroy(fpc1020_data_t *fpc1020);
  13. extern int fpc1020_input_enable(fpc1020_data_t *fpc1020, bool enabled);
  14. extern int fpc1020_input_task(fpc1020_data_t *fpc1020);
  15. #endif /* LINUX_SPI_FPC1020_NAV_H */