mirror of
https://github.com/opentx/opentx.git
synced 2025-07-15 12:25:12 +03:00
Increase output buffer (#7323)
This commit is contained in:
parent
cde54f04f4
commit
6a52627f47
2 changed files with 12 additions and 2 deletions
|
@ -456,6 +456,10 @@ static int luaSportTelemetryPush(lua_State * L)
|
|||
lua_pushboolean(L, outputTelemetryBuffer.isAvailable());
|
||||
return 1;
|
||||
}
|
||||
else if (lua_gettop(L) > sizeof(SportTelemetryPacket) ) {
|
||||
lua_pushboolean(L, false);
|
||||
return 1;
|
||||
}
|
||||
|
||||
uint16_t dataId = luaL_checkunsigned(L, 3);
|
||||
|
||||
|
@ -653,6 +657,10 @@ static int luaCrossfireTelemetryPush(lua_State * L)
|
|||
if (lua_gettop(L) == 0) {
|
||||
lua_pushboolean(L, outputTelemetryBuffer.isAvailable());
|
||||
}
|
||||
else if (lua_gettop(L) > TELEMETRY_OUTPUT_BUFFER_SIZE ) {
|
||||
lua_pushboolean(L, false);
|
||||
return 1;
|
||||
}
|
||||
else if (outputTelemetryBuffer.isAvailable()) {
|
||||
uint8_t command = luaL_checkunsigned(L, 1);
|
||||
luaL_checktype(L, 2, LUA_TTABLE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue