Merge pull request #1688 from tsparber/fix-rssi-scanner

Fixed rssi-scanner example
This commit is contained in:
Simon Duquennoy 2016-06-03 10:12:02 +02:00
commit 5097842cba
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ do_rssi(void)
printf("RSSI:");
for(channel = 0; channel <= 85; ++channel) {
set_frq(channel);
printf("%d ", cc2420_rssi() + 55);
printf("%d ", cc2420_rssi() + 100);
}
printf("\n");
}