1 /*
2  * Copyright (c) 2015 Eric Holland
3  *
4  * Use of this source code is governed by a MIT-style
5  * license that can be found in the LICENSE file or at
6  * https://opensource.org/licenses/MIT
7  */
8 #pragma once
9 
10 typedef struct {
11     double x;
12     double y;
13     double z;
14 } position_vector_t;
15 
16 status_t acc_read_xyz(position_vector_t *pos_vector);
17 
18