1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys,phydat: add missing unit strings (m^2, m^3)

This commit is contained in:
smlng 2017-06-19 11:19:25 +02:00
parent 1cbbece41d
commit 7f012f9af8

View File

@ -64,6 +64,8 @@ const char *phydat_unit_to_str(uint8_t unit)
case UNIT_TEMP_K: return "K";
case UNIT_LUX: return "lx";
case UNIT_M: return "m";
case UNIT_M2: return "m^2";
case UNIT_M3: return "m^3";
case UNIT_G: return "g";
case UNIT_DPS: return "dps";
case UNIT_GR: return "G";