[diag] move factory diags into core (#4010)

- Simplifies make files by not having to deal with separate library.
- Combine factory diags source into single source file.
This commit is contained in:
Jonathan Hui
2019-07-23 08:47:16 -07:00
committed by GitHub
parent a5124493d9
commit e87bc42184
35 changed files with 900 additions and 920 deletions
+48 -3
View File
@@ -132,21 +132,25 @@ void otPlatAlarmMicroStop(otInstance *aInstance)
sAlarmMicro.isRunning = false;
}
bool otDiagIsEnabled(void)
bool otDiagIsEnabled(otInstance *aInstance)
{
OT_UNUSED_VARIABLE(aInstance);
return false;
}
void otDiagProcessCmd(int aArgCount, char *aArgVector[], char *aOutput, size_t aOutputMaxLen)
void otDiagProcessCmd(otInstance *aInstance, int aArgCount, char *aArgVector[], char *aOutput, size_t aOutputMaxLen)
{
OT_UNUSED_VARIABLE(aInstance);
OT_UNUSED_VARIABLE(aArgCount);
OT_UNUSED_VARIABLE(aArgVector);
OT_UNUSED_VARIABLE(aOutput);
OT_UNUSED_VARIABLE(aOutputMaxLen);
}
void otDiagProcessCmdLine(const char *aString, char *aOutput, size_t aOutputMaxLen)
void 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);
@@ -415,3 +419,44 @@ otError otPlatUartSend(const uint8_t *aBuf, uint16_t aBufLength)
OT_UNUSED_VARIABLE(aBufLength);
return OT_ERROR_NONE;
}
void otPlatDiagProcess(otInstance *aInstance, int argc, char *argv[], char *aOutput, size_t aOutputMaxLen)
{
OT_UNUSED_VARIABLE(aInstance);
OT_UNUSED_VARIABLE(argc);
OT_UNUSED_VARIABLE(argv);
OT_UNUSED_VARIABLE(aOutput);
OT_UNUSED_VARIABLE(aOutputMaxLen);
}
void otPlatDiagModeSet(bool aMode)
{
OT_UNUSED_VARIABLE(aMode);
}
bool otPlatDiagModeGet(void)
{
return false;
}
void otPlatDiagChannelSet(uint8_t aChannel)
{
OT_UNUSED_VARIABLE(aChannel);
}
void otPlatDiagTxPowerSet(int8_t aTxPower)
{
OT_UNUSED_VARIABLE(aTxPower);
}
void otPlatDiagRadioReceived(otInstance *aInstance, otRadioFrame *aFrame, otError aError)
{
OT_UNUSED_VARIABLE(aInstance);
OT_UNUSED_VARIABLE(aFrame);
OT_UNUSED_VARIABLE(aError);
}
void otPlatDiagAlarmCallback(otInstance *aInstance)
{
OT_UNUSED_VARIABLE(aInstance);
}