summaryrefslogtreecommitdiff
path: root/board/coral
diff options
context:
space:
mode:
Diffstat (limited to 'board/coral')
-rw-r--r--board/coral/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/coral/board.c b/board/coral/board.c
index 2cf54638e5..e651561e11 100644
--- a/board/coral/board.c
+++ b/board/coral/board.c
@@ -710,13 +710,13 @@ static struct mutex g_lid_mutex;
static struct mutex g_base_mutex;
/* Matrix to rotate accelrator into standard reference frame */
-const matrix_3x3_t base_standard_ref = {
+const mat33_fp_t base_standard_ref = {
{ 0, FLOAT_TO_FP(-1), 0},
{ FLOAT_TO_FP(1), 0, 0},
{ 0, 0, FLOAT_TO_FP(1)}
};
-const matrix_3x3_t mag_standard_ref = {
+const mat33_fp_t mag_standard_ref = {
{ FLOAT_TO_FP(-1), 0, 0},
{ 0, FLOAT_TO_FP(1), 0},
{ 0, 0, FLOAT_TO_FP(-1)}