[posix-app] support platform energy scan in posix-app (#3038)

This commit is contained in:
Shu Chen
2018-09-06 20:57:38 -10:00
committed by Jonathan Hui
parent 045aa4f358
commit b795c729d3
7 changed files with 236 additions and 213 deletions
+6
View File
@@ -84,6 +84,12 @@ extern "C" void otPlatRadioTxStarted(otInstance *, otRadioFrame *aFrame)
(void)aFrame;
}
extern "C" void otPlatRadioEnergyScanDone(otInstance *aInstance, int8_t aEnergyScanMaxRssi)
{
(void)aInstance;
(void)aEnergyScanMaxRssi;
}
/**
* Converts a given string replacing '\n', '\r', '\t', etc. with literal strings "\n", "\r", "\t", etc. to make it
* printable on console.