\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
+ #define DEVICE_IP_ADDRESS (uint8_t[]){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
+ #define DEVICE_NETMASK (uint8_t[]){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
+ #define DEVICE_GATEWAY (uint8_t[]){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