uORB printf map extend floating point decimal places

This commit is contained in:
Daniel Agar 2018-08-30 21:07:34 -04:00 committed by Lorenz Meier
parent af6098b9ea
commit 55abaaf6ab
1 changed files with 2 additions and 2 deletions

View File

@ -77,8 +77,8 @@ type_printf_map = {
'uint16': '%u',
'uint32': '%" PRIu32 "',
'uint64': '%" PRIu64 "',
'float32': '%.3f',
'float64': '%.3f',
'float32': '%.4f',
'float64': '%.6f',
'bool': '%u',
'char': '%c',
}