Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/libraries/AP_Common/float16.h
9444 views
1
/*
2
implement a Float16 type
3
*/
4
5
#pragma once
6
#include <stdint.h>
7
8
struct float16_s {
9
float get(void) const;
10
void set(float value);
11
12
uint16_t v16;
13
};
14
15
typedef struct float16_s Float16_t;
16
17