implement 802.11v/k

This commit is contained in:
Polynomialdivision 2020-04-10 13:58:24 +02:00
parent 899eae05f0
commit 0fbef59869
7 changed files with 451 additions and 31 deletions

View file

@ -77,4 +77,9 @@ void write_mac_to_file(char *path, uint8_t addr[]) {
fprintf(f, "%s\n", mac_buf);
fclose(f);
}
int rcpi_to_rssi(int rcpi)
{
return rcpi / 2 - 110;
}