• Home
  • History
  • Annotate
  • only in /external/nanopb-c/examples/using_double_on_avr/
NameDateSize

..02-Jul-20154 KiB

decode_double.c02-Jul-2015765

double_conversion.c02-Jul-20152.6 KiB

double_conversion.h02-Jul-2015749

doubleproto.proto02-Jul-2015338

encode_double.c02-Jul-2015599

Makefile02-Jul-2015594

README.txt02-Jul-20151 KiB

test_conversions.c02-Jul-20151.6 KiB

README.txt

1Nanopb example "using_double_on_avr"
2====================================
3
4Some processors/compilers, such as AVR-GCC, do not support the double
5datatype. Instead, they have sizeof(double) == 4. Because protocol
6binary format uses the double encoding directly, this causes trouble
7if the protocol in .proto requires double fields.
8
9This directory contains a solution to this problem. It uses uint64_t
10to store the raw wire values, because its size is correct on all
11platforms. The file double_conversion.c provides functions that
12convert these values to/from floats, without relying on compiler
13support.
14
15To use this method, you need to make some modifications to your code:
16
171) Change all 'double' fields into 'fixed64' in the .proto.
18
192) Whenever writing to a 'double' field, use float_to_double().
20
213) Whenever reading a 'double' field, use double_to_float().
22
23The conversion routines are as accurate as the float datatype can
24be. Furthermore, they should handle all special values (NaN, inf, denormalized
25numbers) correctly. There are testcases in test_conversions.c.
26