19 lines
245 B
C
19 lines
245 B
C
|
#ifndef __WIFLY_UDP_H__
|
||
|
#define __WIFLY_UDP_H__
|
||
|
|
||
|
#include "WiFlyDeviceUDP.h"
|
||
|
|
||
|
// Join modes
|
||
|
#define WEP_MODE false
|
||
|
#define WPA_MODE true
|
||
|
|
||
|
// Configuration options
|
||
|
#define WIFLY_BAUD 1
|
||
|
|
||
|
extern WiFlyDevice WiFly;
|
||
|
|
||
|
//WiFlyDevice WiFly();
|
||
|
|
||
|
#endif
|
||
|
|