mirror of https://github.com/ArduPilot/ardupilot
AP_Scripting: Examples: UART log: remove spaces in log description
This commit is contained in:
parent
81cbca150b
commit
2c1dde8019
|
@ -100,7 +100,7 @@ function update()
|
||||||
-- format characters specify the type of variable to be logged, see AP_Logger/README.md
|
-- format characters specify the type of variable to be logged, see AP_Logger/README.md
|
||||||
-- not all format types are supported by scripting only: i, L, e, f, n, M, B, I, E, N, and Z
|
-- not all format types are supported by scripting only: i, L, e, f, n, M, B, I, E, N, and Z
|
||||||
-- Note that Lua automatically adds a timestamp in micro seconds
|
-- Note that Lua automatically adds a timestamp in micro seconds
|
||||||
logger:write('SCR','Sensor1, Sensor2, Sensor3','fff',table.unpack(log_data))
|
logger:write('SCR','Sensor1,Sensor2,Sensor3','fff',table.unpack(log_data))
|
||||||
|
|
||||||
-- reset for the next message
|
-- reset for the next message
|
||||||
log_data = {}
|
log_data = {}
|
||||||
|
|
Loading…
Reference in New Issue