CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/libraries/AP_ADSB/sagetech-sdk/float2Buf.c
Views: 1799
1
/**
2
* @copyright Copyright (c) 2021 Sagetech, Inc. All rights reserved.
3
*
4
* @file float2Buf.c
5
* @author Jacob.Garrison
6
*
7
* @date Mar 2, 2021
8
*
9
*/
10
11
#include "sgUtil.h"
12
13
/*
14
* Documented in the header file.
15
*/
16
void float2Buf(uint8_t *bufferPos, float value)
17
{
18
const uint16_t FLOAT_SIZE = 4;
19
20
union
21
{
22
float val;
23
unsigned char bytes[FLOAT_SIZE];
24
} conversion;
25
26
conversion.val = value;
27
28
for (int i = 0; i < FLOAT_SIZE; ++i)
29
{
30
bufferPos[i] = conversion.bytes[i];
31
}
32
}
33
34