[diag] add gpio diag command support (#8316)

This commit is contained in:
Zhanglong Xia
2022-10-31 17:05:20 -07:00
committed by GitHub
parent 1d1e5d16e0
commit 11a24d111f
14 changed files with 369 additions and 23 deletions
+3 -1
View File
@@ -207,12 +207,14 @@ otError otDiagProcessCmd(otInstance *aInstance, uint8_t aArgsLength, char *aArgs
return OT_ERROR_NOT_IMPLEMENTED;
}
void otDiagProcessCmdLine(otInstance *aInstance, const char *aString, char *aOutput, size_t aOutputMaxLen)
otError otDiagProcessCmdLine(otInstance *aInstance, const char *aString, char *aOutput, size_t aOutputMaxLen)
{
OT_UNUSED_VARIABLE(aInstance);
OT_UNUSED_VARIABLE(aString);
OT_UNUSED_VARIABLE(aOutput);
OT_UNUSED_VARIABLE(aOutputMaxLen);
return OT_ERROR_NOT_IMPLEMENTED;
}
void otPlatReset(otInstance *aInstance)