summaryrefslogtreecommitdiff
path: root/fw
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2022-08-14 01:24:13 +0200
committerUros Majstorovic <majstor@majstor.org>2022-08-14 01:24:13 +0200
commit3f335d1340be02f9266cf00927d455a62ad0e619 (patch)
tree60cfb05b9eb4b6c7acdc0124e09ccc89cd486a57 /fw
parentcb4766fb72ff80f10ef373653647950494cdbd0d (diff)
rename f
Diffstat (limited to 'fw')
-rw-r--r--fw/fe310/eos/dev/eve.c2
-rw-r--r--fw/fe310/eos/dev/eve.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/fw/fe310/eos/dev/eve.c b/fw/fe310/eos/dev/eve.c
index b46e045..4d86677 100644
--- a/fw/fe310/eos/dev/eve.c
+++ b/fw/fe310/eos/dev/eve.c
@@ -120,7 +120,7 @@ void eos_eve_calibrate(void) {
printf("uint32_t touch_matrix[6] = {0x%x,0x%x,0x%x,0x%x,0x%x,0x%x}\n", matrix[0], matrix[1], matrix[2], matrix[3], matrix[4], matrix[5]);
}
-void eos_eve_set_touch_matrix(const uint32_t *matrix) {
+void eos_eve_set_tmatrix(const uint32_t *matrix) {
eve_select();
eve_touch_set_matrix(matrix);
eve_deselect();
diff --git a/fw/fe310/eos/dev/eve.h b/fw/fe310/eos/dev/eve.h
index 8eb982f..cb48364 100644
--- a/fw/fe310/eos/dev/eve.h
+++ b/fw/fe310/eos/dev/eve.h
@@ -2,7 +2,7 @@
int eos_eve_init(uint8_t wakeup_cause);
void eos_eve_calibrate(void);
-void eos_eve_set_touch_matrix(const uint32_t *matrix);
+void eos_eve_set_tmatrix(const uint32_t *matrix);
int eos_eve_run(uint8_t wakeup_cause);
void eos_eve_start(void);
void eos_eve_stop(void);