Updated for the new kernel API
diff --git a/contiki-avr/conf/clock-conf.h b/contiki-avr/conf/clock-conf.h
new file mode 100644
index 0000000..3f2c307
--- /dev/null
+++ b/contiki-avr/conf/clock-conf.h
@@ -0,0 +1,15 @@
+#ifndef __CLOCK_CONF_H__
+#define __CLOCK_CONF_H__
+
+typedef unsigned short clock_time_t;
+#define CLOCK_CONF_SECOND 8
+
+void clock_delay(unsigned int us2);
+
+void clock_wait(int ms10);
+
+void clock_set_seconds(unsigned long s);
+unsigned long clock_seconds(void);
+
+
+#endif /* __CLOCK_CONF_H__ */