diff --git a/platform/avr-atmega128rfa1/contiki-conf.h b/platform/avr-atmega128rfa1/contiki-conf.h index 52f397fe8..34c8cab5b 100644 --- a/platform/avr-atmega128rfa1/contiki-conf.h +++ b/platform/avr-atmega128rfa1/contiki-conf.h @@ -267,4 +267,9 @@ unsigned long clock_seconds(void); #define CCIF #define CLIF +/* include the project config */ +/* PROJECT_CONF_H might be defined in the project Makefile */ +#ifdef PROJECT_CONF_H +#include PROJECT_CONF_H +#endif /* PROJECT_CONF_H */ #endif /* __CONTIKI_CONF_H__ */ diff --git a/platform/avr-raven/contiki-conf.h b/platform/avr-raven/contiki-conf.h index 47ec2b09e..0970093a7 100644 --- a/platform/avr-raven/contiki-conf.h +++ b/platform/avr-raven/contiki-conf.h @@ -261,4 +261,10 @@ unsigned long clock_seconds(void); #define CCIF #define CLIF +/* include the project config */ +/* PROJECT_CONF_H might be defined in the project Makefile */ +#ifdef PROJECT_CONF_H +#include PROJECT_CONF_H +#endif /* PROJECT_CONF_H */ + #endif /* __CONTIKI_CONF_H__ */ diff --git a/platform/avr-ravenusb/contiki-conf.h b/platform/avr-ravenusb/contiki-conf.h index bc773368b..db2b0e918 100644 --- a/platform/avr-ravenusb/contiki-conf.h +++ b/platform/avr-ravenusb/contiki-conf.h @@ -384,8 +384,8 @@ extern void mac_log_802_15_4_rx(const uint8_t* buffer, size_t total_len); #define UIP_CONF_MAX_LISTENPORTS 2 #define UIP_CONF_UDP_CONNS 6 -/* Optional, TCP needed to serve the RPL neighbor web page currently hard coded at bbbb::11 */ -/* The RPL neighbors can also be viewed using the jack menu */ +/* Optional, TCP needed to serve the RPL neighbor web page currently hard coded at bbbb::200 */ +/* The RPL neighbors can also be viewed using the jackdaw menu */ /* A small MSS is adequate for the internal jackdaw webserver and RAM is very limited*/ #define RPL_HTTPD_SERVER 0 #if RPL_HTTPD_SERVER