mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
84c2b18e43
This introduces enum types for range checking/returns, adds a millis(() call (this returns a uint32_t), and moves over to an auto generated version of the GCS binding
10 lines
212 B
C
10 lines
212 B
C
#pragma once
|
|
|
|
#include "lua/src/lua.hpp"
|
|
|
|
int new_uint32_t(lua_State *L);
|
|
uint32_t *check_uint32_t(lua_State *L, int arg);
|
|
|
|
void load_boxed_numerics(lua_State *L);
|
|
void load_boxed_numerics_sandbox(lua_State *L);
|