|
@@ -340,13 +340,13 @@ static shellmatta_retCode_t shellmatta_processDataInt(shellmatta_handle_t ha
|
|
|
{
|
|
|
if (inst->echoEnabled)
|
|
|
{
|
|
|
- inst->write("\r\nCommand: ", 11u);
|
|
|
- inst->write(inst->buffer, inst->inputCount);
|
|
|
- inst->write(" not found", 10u);
|
|
|
+ SHELLMATTA_WRITE("\r\nCommand: ", 11u);
|
|
|
+ SHELLMATTA_WRITE(inst->buffer, inst->inputCount);
|
|
|
+ SHELLMATTA_WRITE(" not found", 10u);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- inst->write("\r\nCommand not found!", 20u);
|
|
|
+ SHELLMATTA_WRITE("\r\nCommand not found!", 20u);
|
|
|
}
|
|
|
}
|
|
|
|