aboutsummaryrefslogtreecommitdiffstats
path: root/src/drivers/Cst816s.h
Commit message (Collapse)AuthorAgeFilesLines
* Format header filesFinlay Davidson2023-01-091-0/+3
| | | | In my PR updating clang-format, I forgot to also format the headers.
* Apply clang-format to all C++ filesFinlay Davidson2022-06-051-5/+6
|
* 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.
* Add data validity check and retries in CST816S driver. See ↵Jean-François Milants2021-11-061-1/+6
| | | | https://github.com/InfiniTimeOrg/InfiniTime/issues/763#issuecomment-962436976.
* Fix Error screen and optimize GetTouchInfoRiku Isokoski2021-09-151-1/+0
|
* Merge branch 'develop' into update_touch_driverRiku Isokoski2021-09-141-3/+0
|\
| * Merge branch 'develop' into pinmaphubmartin2021-08-291-14/+11
| |\
| * | PinMap with namespace and constexprhubmartin2021-08-031-3/+0
| | |
| * | DRAFT: Put gpio pins to separate filehubmartin2021-08-021-1/+2
| | |
* | | Merge branch 'develop' into update_touch_driverRiku Isokoski2021-08-281-3/+2
|\ \ \ | | |/ | |/|
| * | UpdateRiku Isokoski2021-07-181-1/+1
| | |
| * | Fix most issuesRiku Isokoski2021-07-161-14/+12
| |/
* | Automatic error detectionRiku Isokoski2021-08-181-1/+1
| |
* | Update touchpad driverRiku Isokoski2021-07-141-12/+24
|/
* Changed access modified indentationAvamander2021-04-241-2/+2
|
* Reformatted all the files according to clang-format styleAvamander2021-04-241-48/+49
|
* 0.16.0 TWI problems fixJoaquim2021-04-101-1/+1
| | | | | | | | 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
* Include cleanup: driversokaestne2020-11-151-1/+0
|
* Handle error code when calling TwiMaster::Read().JF2020-10-271-7/+7
|
* New implementation of the I²C/TWI driver.JF2020-07-191-17/+13
| | | | Fix reset timing and add dummy reading in Cst816S to fix init error on some devices.
* Do not copy LittleVgl object in DislayApp, use reference instead.JF2020-03-081-0/+6
| | | | Make Cst816s, SpiMaster and St7789 not copiable and not movable
* Log Touchpanel data (position + gesture!)JF2020-02-121-0/+12
|
* Disable SPI, I²C, touch controller and display controller in sleep mode.JF2020-01-171-0/+2
| | | | | | | | 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/+47
Handle touch event in display app : draw a big square at the touch point coordinates.