nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | #ifndef HAVE_GHOSTING_H |
2 | #define HAVE_GHOSTING_H |
||
3 | |||
4 | #ifdef __linux__ |
||
5 | |||
6 | //This does the job for you |
||
7 | void parse_ghosting(const char *input); |
||
8 | |||
9 | //If you set rate or power to -1, ghosting will be disabled for this! |
||
10 | //So If you just want to change your tx power every 100 ms from 10 dBm to your cards max: |
||
11 | //start_ghosting(100, -1, 10); |
||
12 | void start_ghosting(unsigned int period, int max_bitrate, int min_tx_power); |
||
13 | |||
14 | void ghosting_print_help(); |
||
15 | |||
16 | #endif |
||
17 | |||
18 | #endif |