nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #ifndef HAVE_CHANNELHOPPER_H
2 #define HAVE_CHANNELHOPPER_H
3  
4 //Takes a list of channels as string in format "1,2,3,4,5,6,7"
5 //Starts hopping channels, switches channel round-robin style every useconds µs
6 //If called again, it does nothing, only one hopper is possible (of course)
7 void init_channel_hopper(char *chanlist, int useconds);
8  
9 #endif