Fix missing field name commas (#1724)
This commit is contained in:
parent
1a9b05cb1b
commit
b5fd51e484
3 changed files with 3 additions and 3 deletions
src/devices
|
@ -125,7 +125,7 @@ static int cavius_decode(r_device *decoder, bitbuffer_t *bitbuffer)
|
||||||
static char *output_fields[] = {
|
static char *output_fields[] = {
|
||||||
"model",
|
"model",
|
||||||
"id",
|
"id",
|
||||||
"battery_ok"
|
"battery_ok",
|
||||||
"net_id",
|
"net_id",
|
||||||
"message",
|
"message",
|
||||||
"text",
|
"text",
|
||||||
|
|
|
@ -133,7 +133,7 @@ static int missil_ml0757_callback(r_device *decoder, bitbuffer_t *bitbuffer)
|
||||||
static char *output_fields[] = {
|
static char *output_fields[] = {
|
||||||
"model",
|
"model",
|
||||||
"id",
|
"id",
|
||||||
"battery_ok"
|
"battery_ok",
|
||||||
"temperature_C",
|
"temperature_C",
|
||||||
"wind_avg_km_h",
|
"wind_avg_km_h",
|
||||||
"rain_mm",
|
"rain_mm",
|
||||||
|
|
|
@ -411,7 +411,7 @@ static char *output_fields[] = {
|
||||||
// Common fields
|
// Common fields
|
||||||
"model",
|
"model",
|
||||||
"id",
|
"id",
|
||||||
"rolling"
|
"rolling",
|
||||||
"fixed",
|
"fixed",
|
||||||
"button_id",
|
"button_id",
|
||||||
"remote_id",
|
"remote_id",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue