Skip to content

include: drivers: misc: ft8xx: add doxygen to ft8xx_touch_transform #93524

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions include/zephyr/drivers/misc/ft8xx/ft8xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ extern "C" {
* The content of this structure is filled by ft8xx_calibrate().
*/
struct ft8xx_touch_transform {
uint32_t a;
uint32_t b;
uint32_t c;
uint32_t d;
uint32_t e;
uint32_t f;
uint32_t a; /*< Coefficient A of the bitmap transform matrix */
uint32_t b; /*< Coefficient B of the bitmap transform matrix */
uint32_t c; /*< Coefficient C of the bitmap transform matrix */
uint32_t d; /*< Coefficient D of the bitmap transform matrix */
uint32_t e; /*< Coefficient E of the bitmap transform matrix */
uint32_t f; /*< Coefficient F of the bitmap transform matrix */
};

/**
Expand Down