=== __declspec(local_mem) char dbgmsg[28]; __declspec(local_mem) char tmpstr[12]; __declspec(sram) int ninq; char GET_ninq[8] = ">ninq"; === memcpy_lmem_sram( dbgmsg, GET_ninq, 8 ); // copy to dbgmsg onl_api_utoa( ninq, tmpstr, 12 ); strcat_lmem( dbgmsg, tmpstr ); onl_api_debug_message( msgNextBlock, dbgmsg ); ===