ardupilot/libraries/AP_Scripting/lua_common_defs.h
Thomas Watson 3a834e83c7 AP_Scripting: reference script environment directly
Referencing the original function to run is of questionable value and
the only user uses it to grab the script environent from the upvalues.

Instead, use a reference to the script environment table directly.
2024-07-30 10:33:56 +10:00

17 lines
372 B
C

#pragma once
#include <AP_HAL/AP_HAL_Boards.h>
#ifndef SCRIPTING_DIRECTORY
#if HAL_OS_FATFS_IO
#define SCRIPTING_DIRECTORY "/APM/scripts"
#else
#define SCRIPTING_DIRECTORY "./scripts"
#endif //HAL_OS_FATFS_IO
#endif // SCRIPTING_DIRECTORY
int lua_get_current_env_ref();
const char* lua_get_modules_path();
void lua_abort(void) __attribute__((noreturn));