Skip to content

Commit

Permalink
Added LUA_NAME_INVALID and LUA_NAME_NOT_FOUND to error codes
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbrant3 committed Dec 16, 2024
1 parent b0fa87d commit 556acfe
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions LabJack/LJM/ljm_constants.json
Original file line number Diff line number Diff line change
Expand Up @@ -7937,6 +7937,16 @@
"string": "LUA_IS_CLOSING",
"description": "The Lua VM is being closed, usually takes less than 100 ms."
},
{
"error": 2390,
"string": "LUA_NAME_INVALID",
"description": "An invalid register name was passed to the the Lua function. Register names must be strings, and include only valid characters, '_', and digits."
},
{
"error": 2391,
"string": "LUA_NAME_NOT_FOUND",
"description": "The register name passed to the Lua function could not be found. Check the Modbus Map for valid register names."
},
{
"error": 2400,
"string": "SYSTEM_MEMORY_BEREFT",
Expand Down

0 comments on commit 556acfe

Please sign in to comment.