Line 44: can '|| defined(PLATFORM_EPIC)' be added at the end safely?

old:
#if defined(PLATFORM_MICAZ) || defined(PLATFORM_TELOSB)
;
#else
#error "LPL timesync is not available for your platform"
#endif

new:
#if defined(PLATFORM_MICAZ) || defined(PLATFORM_TELOSB) || 
defined(PLATFORM_EPIC)
;
#else
#error "LPL timesync is not available for your platform"
#endif

Thanks,
Harsha
_______________________________________________
Tinyos-help mailing list
[email protected]
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Reply via email to