AP_Scripting: examples: update examples for fixed io.open behaviour

This commit is contained in:
Iampete1 2023-12-22 14:27:40 +00:00 committed by Andrew Tridgell
parent b13632cc94
commit 81d4804d53
2 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,9 @@ local file_name
while true do
file_name = string.format('Particle %i.csv',index)
local file = io.open(file_name)
if file == nil then
break
end
local first_line = file:read(1) -- try and read the first character
io.close(file)
if first_line == nil then

View File

@ -14,6 +14,9 @@ local function save_to_SD()
while true do
file_name = string.format('%i.waypoints',index)
local file = io.open(file_name)
if file == nil then
break
end
local first_line = file:read(1) -- try and read the first character
io.close(file)
if first_line == nil then