Add RT_SENSOR_VENDOR_MELEXIS in sensor_cmd.c (#5966)

* Add RT_SENSOR_VENDOR_MELEXIS in sensor_cmd.c

print vendor information of Melexis in the function sensor()
This commit is contained in:
lgnq 2022-05-19 10:20:39 +08:00 committed by GitHub
parent 3ecfe9c61e
commit 50a42331e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -360,6 +360,9 @@ static void sensor(int argc, char **argv)
case RT_SENSOR_VENDOR_MAXIM:
rt_kprintf("vendor :Maxim Integrated\n");
break;
case RT_SENSOR_VENDOR_MELEXIS:
rt_kprintf("vendor :Melexis\n");
break;
}
rt_kprintf("model :%s\n", info.model);
switch (info.unit)