Move unpack lwip ip address macro to macros module.
authorDaniele Basile <asterix@develer.com>
Mon, 16 Jan 2012 14:01:59 +0000 (15:01 +0100)
committerDaniele Basile <asterix@develer.com>
Mon, 16 Jan 2012 17:56:15 +0000 (18:56 +0100)
bertos/cfg/macros.h
boards/sam3x-ek/examples/sam3x-ek_http_server/main.c

index ff682fe214d3cdb22f2e4ab5242ba07ada65e510..de9fa0e99978f9ffd2d63565ff22ca6564eb6da0 100644 (file)
@@ -446,5 +446,22 @@ INLINE bool is_aligned(const void *addr, size_t size)
 
 /** \} */ //defgroup macros
 
+
+/**
+ * Macro to unpack the ip addres from lwip format in 4 int
+ * \param struct ip_addr ip_addr;
+ * \return for int variable separated from comma
+ *
+ * \usage:
+ * \code
+ * LOG_INFO("dhcp ok: ip = %d.%d.%d.%d\n", IP_ADDR_TO_INT_TUPLE(netif.ip_addr.addr));
+ * \endcode
+ */
+#define IP_ADDR_TO_INT_TUPLE(addr) \
+               (int)((addr) >>  0 & 0xff), \
+               (int)((addr) >>  8 & 0xff), \
+               (int)((addr) >> 16 & 0xff), \
+               (int)((addr) >> 24 & 0xff)
+
 #endif /* MACROS_H */
 
index 4e6b492f6dc8a14a921164f55db69ad93e705163..30054db8778db960f46190e8b1a707b15f2d81bc 100644 (file)
 #include <stdio.h>
 #include <string.h>
 
-/* Macro to unpack the ip addres from lwip format in 4 int*/
-#define IP_ADDR_TO_INT_TUPLE(addr) \
-               (int)((addr) >>  0 & 0xff), \
-               (int)((addr) >>  8 & 0xff), \
-               (int)((addr) >> 16 & 0xff), \
-               (int)((addr) >> 24 & 0xff)
-
 /* Network interface global variables */
 static struct ip_addr ipaddr, netmask, gw;
 static struct netif netif;