aboutsummaryrefslogtreecommitdiffstats
path: root/src/drivers/Cst816s.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Apply clang-format to all C++ filesFinlay Davidson2022-06-051-8/+3
|
* Update includes to to be relative to src directoryReinhold Gschweicher2021-11-151-1/+1
| | | | | | | Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
* Fix unresponsive touch panel after update to 1.7 : don't care if device ids ↵Jean-François Milants2021-11-141-11/+5
| | | | are not the ones we expected (until we know more about these communication and IDs issues).
* Fix formatting following the code review.Jean-François Milants2021-11-071-3/+3
|
* Add data validity check and retries in CST816S driver. See ↵Jean-François Milants2021-11-061-21/+52
| | | | https://github.com/InfiniTimeOrg/InfiniTime/issues/763#issuecomment-962436976.
* Merge pull request #586 from hubmartin/wake-timeJF2021-10-231-2/+0
|\ | | | | Improve wake-up time
| * Merge branch 'develop' into wake-timehubmartin2021-09-161-23/+26
| |\
| * | Remove commented commands completelyhubmartin2021-08-231-2/+0
| | |
| * | Remove unnecessary pin_set, save 50mshubmartin2021-08-151-2/+2
| | |
* | | Fix Error screen and optimize GetTouchInfoRiku Isokoski2021-09-151-9/+8
| | |
* | | Merge branch 'develop' into update_touch_driverRiku Isokoski2021-09-141-6/+7
|\ \ \ | | |/ | |/|
| * | Merge branch 'develop' into pinmaphubmartin2021-08-291-18/+20
| |\ \
| * | | PinMap with namespace and constexprhubmartin2021-08-031-6/+7
| | |/ | |/|
* | | Merge branch 'develop' into update_touch_driverRiku Isokoski2021-08-281-3/+10
|\ \ \ | | |/ | |/|
| * | Fix most issuesRiku Isokoski2021-07-161-17/+9
| | |
| * | Quick fixRiku Isokoski2021-07-151-1/+1
| | |
| * | New touch handler, with issuesRiku Isokoski2021-07-151-1/+11
| |/
* | Automatic error detectionRiku Isokoski2021-08-181-1/+6
| |
* | Update touchpad driverRiku Isokoski2021-07-141-16/+23
|/
* Reformatted all the files according to clang-format styleAvamander2021-04-241-10/+9
|
* 0.16.0 TWI problems fixJoaquim2021-04-101-1/+2
| | | | | | | | More memory for freertos heap and timer stack Fix warning in watchface Fix number of bytes read by cst816 Debug app to show freertos tasks Increased the number of bytes of the twi write buffer
* Big UI and navigation RewriteJoaquim2021-04-041-44/+24
| | | | | | | | | | | new navigation add some color to the apps redesign menus new settings menu new quick settings code clean up size reduction by converting navigation images to font and more...
* Include cleanup: driversokaestne2020-11-151-3/+4
|
* Handle error code when calling TwiMaster::Read().JF2020-10-271-1/+3
|
* Re-implement sleep/wakeup for touch panel, display, NOR Flash, SPI and TWI.JF2020-08-221-5/+8
|
* Fix most of the warnings. Remaining warnings come from nimble source code.JF2020-08-171-4/+3
|
* New implementation of the I²C/TWI driver.JF2020-07-191-30/+22
| | | | Fix reset timing and add dummy reading in Cst816S to fix init error on some devices.
* Add touch panel port to lvgl.JF2020-02-161-20/+20
| | | | PoC of user interaction with 3 screen (clock, menu and app).
* Log Touchpanel data (position + gesture!)JF2020-02-121-14/+43
|
* Disable SPI, I²C, touch controller and display controller in sleep mode.JF2020-01-171-0/+10
| | | | | | | | Re-enable them on wake up. Remove delays that were not needed in st7889 driver. Hopefully, it'll improve the battery life!
* Add basic touch panel driver.JF2020-01-031-0/+77
Handle touch event in display app : draw a big square at the touch point coordinates.