Smart supermarket toy implementation for Networked Embedded Systems exam on Launchpad CC2650 with contiki-ng
Go to file
bg- fb94d50410 Change typedef of uip_ipaddr_t from a vector type to a union.
typedef union uip_ip4addr_t {
  u16_t u16[2];
  u8_t  u8[4];
} uip_ip4addr_t;

typedef uip_ip4addr_t uip_ipaddr_t;

This implies that one must consistently pass pointers to
uip_ipaddr_t:s and not mix and match pointers with
uip_ipaddr_t:s as was done earlier.
2006-08-09 16:13:39 +00:00
apps Change typedef of uip_ipaddr_t from a vector type to a union. 2006-08-09 16:13:39 +00:00
core Change typedef of uip_ipaddr_t from a vector type to a union. 2006-08-09 16:13:39 +00:00
cpu Removed out-commented stuff from Makefiles 2006-06-24 06:23:47 +00:00
doc Import of the contiki-2.x development code from the SICS internal CVS server 2006-06-17 22:41:10 +00:00
examples Removed unneeded target 2006-06-17 22:53:09 +00:00
platform Change typedef of uip_ipaddr_t from a vector type to a union. 2006-08-09 16:13:39 +00:00
tools Read error messages from device file and print to stdout. 2006-08-02 14:41:30 +00:00
Makefile initial creation of toplevel makefile 2006-06-24 19:05:53 +00:00
Makefile.include Changed linking to use CC instead of LD to make things work with the current Makefiles (particularly platform/native). Not sure if this change is a good thing; it not, it should be reverted once we get the other Makefiles up to speed. 2006-08-08 13:06:54 +00:00