mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-05-04 23:12:57 +00:00
Move TWI.c driver into the straight LUFA/Drivers/Peripheral/ directory.
Fix TemperatureDataLogger and Webserver project builds.
This commit is contained in:
@@ -56,13 +56,13 @@
|
||||
|
||||
/* Macros: */
|
||||
/** IP address that the webserver should use once connected to a RNDIS device. */
|
||||
#define DEVICE_IP_ADDRESS 192, 168, 1, 10
|
||||
#define DEVICE_IP_ADDRESS (uint8_t[]){192, 168, 1, 10}
|
||||
|
||||
/** Netmask that the webserver should once connected to a RNDIS device. */
|
||||
#define DEVICE_NETMASK 255, 255, 255, 0
|
||||
#define DEVICE_NETMASK (uint8_t[]){255, 255, 255, 0}
|
||||
|
||||
/** IP address of the default gateway the webserver should use when routing outside the local subnet. */
|
||||
#define DEVICE_GATEWAY 192, 168, 1, 1
|
||||
#define DEVICE_GATEWAY (uint8_t[]){192, 168, 1, 1}
|
||||
|
||||
/** LED mask for the library LED driver, to indicate that the USB interface is not ready. */
|
||||
#define LEDMASK_USB_NOTREADY LEDS_LED1
|
||||
|
||||
Reference in New Issue
Block a user