Ran into an issue when using this with lwIP where some of the appvars would trigger TI-OS error Bad Address and fail out during the delete appvar stage. Then subsequently going to pull them up in the memory menu and delete them there would yield the same error.
Codex indicated the issue is that appvar_name is used for comparison, but never is actually set to anything. I fixed that on my submodule and it's working fine.
Ln 64 => sprintf(appvar_name, APPVAR_PREFIX "%u", i);
app_tools/installer/src/main.c
Line 62 in 3409a9d
Ran into an issue when using this with lwIP where some of the appvars would trigger TI-OS error Bad Address and fail out during the delete appvar stage. Then subsequently going to pull them up in the memory menu and delete them there would yield the same error.
Codex indicated the issue is that appvar_name is used for comparison, but never is actually set to anything. I fixed that on my submodule and it's working fine.
Ln 64 =>
sprintf(appvar_name, APPVAR_PREFIX "%u", i);