#include "Lib/WebserverApp.h"\r
\r
/* Macros: */\r
+ /** IP address that the webserver should use once connected to a RNDIS device. */\r
+ #define DEVICE_IP_ADDRESS 192, 168, 1, 10\r
+ \r
+ /** Netmask that the webserver should once connected to a RNDIS device. */\r
+ #define DEVICE_NETMASK 255, 255, 255, 0\r
+ \r
+ /** IP address of the default gateway the webserver should use when routing outside the local subnet. */\r
+ #define DEVICE_GATEWAY 192, 168, 1, 1\r
+\r
/** LED mask for the library LED driver, to indicate that the USB interface is not ready. */\r
#define LEDMASK_USB_NOTREADY LEDS_LED1\r
\r
\r
/** LED mask for the library LED driver, to indicate that the USB interface is busy. */\r
#define LEDMASK_USB_BUSY LEDS_LED2\r
-\r
+ \r
/* Function Prototypes: */\r
void SetupHardware(void);\r
void ProcessIncommingPacket(void);\r