Hardware Abstraction Layer for FreeRTOS
vec.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Author: Andreas Werner <kernel@andy89.org>
4  * Date: 2016
5  */
6 #ifndef VEC_H_
7 #define VEC_H_
8 #include <stdint.h>
12 struct vector {
16  int16_t x;
20  int16_t y;
24  int16_t z;
25 };
26 #endif
vector::y
int16_t y
Definition: vec.h:20
vector::z
int16_t z
Definition: vec.h:24
vector
Definition: vec.h:12
vector::x
int16_t x
Definition: vec.h:16