Arduino LMIC 6.0.1
Arduino LoRaWAN(r) MAC in C
Loading...
Searching...
No Matches
lmic_util.h
1/*
2
3Module: lmic_util.h
4
5Function:
6 Declare encoding and decoding utilities for LMIC clients.
7
8Copyright & License:
9 See accompanying LICENSE file.
10
11Author:
12 Terry Moore, MCCI September 2018
13
14*/
15
16#ifndef _LMIC_UTIL_H_
17# define _LMIC_UTIL_H_
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#include <stdint.h>
24
25uint16_t LMIC_f2sflt16(float);
26uint16_t LMIC_f2sflt12(float);
27uint16_t LMIC_f2uflt16(float);
28uint16_t LMIC_f2uflt12(float);
29
30#ifdef __cplusplus
31}
32#endif
33
34#endif /* _LMIC_UTIL_H_ */