summaryrefslogtreecommitdiff
path: root/src/drivers/Cst816s.h
AgeCommit message (Collapse)AuthorFilesLines
2022-06-05Apply clang-format to all C++ filesFinlay Davidson1-5/+6
2021-11-15Update includes to to be relative to src directoryReinhold Gschweicher1-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.
2021-11-06Add data validity check and retries in CST816S driver. See ↵Jean-François Milants1-1/+6
https://github.com/InfiniTimeOrg/InfiniTime/issues/763#issuecomment-962436976.
2021-09-15Fix Error screen and optimize GetTouchInfoRiku Isokoski1-1/+0
2021-09-14Merge branch 'develop' into update_touch_driverRiku Isokoski1-3/+0
2021-08-29Merge branch 'develop' into pinmaphubmartin1-14/+11
2021-08-28Merge branch 'develop' into update_touch_driverRiku Isokoski1-3/+2
2021-08-18Automatic error detectionRiku Isokoski1-1/+1
2021-08-03PinMap with namespace and constexprhubmartin1-3/+0
2021-08-02DRAFT: Put gpio pins to separate filehubmartin1-1/+2
2021-07-18UpdateRiku Isokoski1-1/+1
2021-07-16Fix most issuesRiku Isokoski1-14/+12
2021-07-14Update touchpad driverRiku Isokoski1-12/+24
2021-04-24Changed access modified indentationAvamander1-2/+2
2021-04-24Reformatted all the files according to clang-format styleAvamander1-48/+49
2021-04-100.16.0 TWI problems fixJoaquim1-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
2020-11-15Include cleanup: driversokaestne1-1/+0
2020-10-27Handle error code when calling TwiMaster::Read().JF1-7/+7
2020-07-19New implementation of the I²C/TWI driver.JF1-17/+13
Fix reset timing and add dummy reading in Cst816S to fix init error on some devices.
2020-03-08Do not copy LittleVgl object in DislayApp, use reference instead.JF1-0/+6
Make Cst816s, SpiMaster and St7789 not copiable and not movable
2020-02-12Log Touchpanel data (position + gesture!)JF1-0/+12
2020-01-17Disable SPI, I²C, touch controller and display controller in sleep mode.JF1-0/+2
Re-enable them on wake up. Remove delays that were not needed in st7889 driver. Hopefully, it'll improve the battery life!
2020-01-03Add basic touch panel driver.JF1-0/+47
Handle touch event in display app : draw a big square at the touch point coordinates.