1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 14:28:07 +00:00

chore(core): fix typos in touch.h

[no changelog]
This commit is contained in:
tychovrahe 2024-09-19 08:57:42 +02:00 committed by TychoVrahe
parent c82fad68e7
commit 12c3dc5ff8

View File

@ -9,7 +9,7 @@
// Powers on and initializes touch driver controller. // Powers on and initializes touch driver controller.
// The function has no effect if the driver was already initialized. // The function has no effect if the driver was already initialized.
// //
// Returns `sectrue` if the hardware was successfuly initialized. // Returns `sectrue` if the hardware was successfully initialized.
secbool touch_init(void); secbool touch_init(void);
// Deinitializes the touch driver // Deinitializes the touch driver
@ -27,7 +27,7 @@ secbool touch_ready(void);
// Gets the touch controller firmware version // Gets the touch controller firmware version
// //
// Can be called only if the touch controller was initialized, // Can be called only if the touch controller was initialized,
// othervise returns 0. // otherwise returns 0.
// //
// We do not interpret the value of the version, we just print it // We do not interpret the value of the version, we just print it
// during the production test. // during the production test.
@ -35,7 +35,7 @@ uint8_t touch_get_version(void);
// Sets touch controller sensitivity // Sets touch controller sensitivity
// //
// (Internally threadhsold for ????) // (Internally threshold for ????)
secbool touch_set_sensitivity(uint8_t value); secbool touch_set_sensitivity(uint8_t value);
// Checks if the touch is currently reporting any events // Checks if the touch is currently reporting any events