ndless os config

Is there any way to access to the nspire OS configuration? For example, language, unit angle, ...
News, programmes, tutoriaux, forum sur les calculatrices TI, Casio, NumWorks... !
https://tiplanet.org/forum/
math.getEvalSettings()
(Returns a table of tables with the document settings that are currently being used by math.eval. These settings are equivalent to the current document settings unless a call has been made to setEvalSettings). Cf the page https://wiki.inspired-lua.org/math.setEvalSettings that has more info too.#include <os.h>
#include <syscall.h>
...
char16_t input_w[] = u"nsolve(x-42=0,x)";
void *math_expr = nullptr;
int str_offset = 0;
int error = TI_MS_evaluateExpr_ACBER(NULL, NULL, (const uint16_t*)input_w, &math_expr, &str_offset);
if(error)
return 0;
char16_t *output_w;
error = TI_MS_MathExprToStr(math_expr, NULL, (uint16_t**)&output_w);
syscall<e_free, void>(math_expr); // Should be TI_MS_DeleteMathExpr
if(error)
return 0;
// Do something with output_w, it's u"42." here
syscall<e_free, void>(output_w);
unsigned NSPIRE_RTC_ADDR=0x90090000;
* (volatile unsigned *) NSPIRE_RTC_ADDR = (h*60+m)*60;