[mac] fix tx counters (#2134)

This commit is contained in:
Robert Lubos
2017-08-29 05:17:41 +02:00
committed by Jonathan Hui
parent 850713f09b
commit 141ceb0446
3 changed files with 23 additions and 30 deletions
+1
View File
@@ -667,6 +667,7 @@ void Interpreter::ProcessCounters(int argc, char *argv[])
mServer->OutputFormat(" TxOther: %d\r\n", counters->mTxOther);
mServer->OutputFormat(" TxRetry: %d\r\n", counters->mTxRetry);
mServer->OutputFormat(" TxErrCca: %d\r\n", counters->mTxErrCca);
mServer->OutputFormat(" TxErrBusyChannel: %d\r\n", counters->mTxErrBusyChannel);
mServer->OutputFormat("RxTotal: %d\r\n", counters->mRxTotal);
mServer->OutputFormat(" RxUnicast: %d\r\n", counters->mRxUnicast);
mServer->OutputFormat(" RxBroadcast: %d\r\n", counters->mRxBroadcast);