]> granicus.if.org Git - esp-idf/commit
driver(touch): fix bug and add more features
authorWangjialin <wangjialin@espressif.com>
Tue, 18 Jul 2017 11:57:28 +0000 (19:57 +0800)
committerWangjialin <wangjialin@espressif.com>
Tue, 22 Aug 2017 13:21:39 +0000 (21:21 +0800)
commit842caaab21f8d58d50c6719127f3b976373f6ac5
tree821caaadc3fa8d1937a2f37a468c57523d11fcc9
parentcd5cc9927bf494e759b8bb513de3f4a9312bc4af
driver(touch): fix bug and add more features

1. add sens_struct.h
2. add definition of RTCCNTL and RTCIO
3. modify touch pad examples
4. update example code.
5. add comments add option in menuconfig
6. fix issue that pad index 8 and 9 are mismatched
7. add touch_pad_read_filtered() api to get value filtered by iir filter
8. modify touch pad isr func
9. Make the items in perihperal.ld in the sequence of address
10. delete Kconfig for touch pad
11. add touchpad filter APIs to adjust the filter
12. add touch_pad into index.rst
13. add touch_pad in Doxyfile
14. add touch_pad.rst
components/driver/include/driver/touch_pad.h
components/driver/rtc_module.c
components/esp32/ld/esp32.peripherals.ld
components/soc/esp32/include/soc/rtc_cntl_struct.h
components/soc/esp32/include/soc/rtc_io_struct.h
components/soc/esp32/include/soc/sens_struct.h [new file with mode: 0644]
docs/Doxyfile
docs/api-reference/peripherals/index.rst
docs/api-reference/peripherals/touch_pad.rst [new file with mode: 0644]
examples/peripherals/touch_pad_interrupt/main/tp_interrupt_main.c
examples/peripherals/touch_pad_read/main/tp_read_main.c