altosui: Add config and pyro tabs to graph widget
[fw/altos] / src / kernel / ao_notask.h
index a4446726c4540c3aa2c93fdd194f4978cdb2e30b..f698a4ee2426014985a32e45e526afbf39556980 100644 (file)
 #ifndef _AO_NOTASK_H_
 #define _AO_NOTASK_H_
 
+void
+ao_delay_until(AO_TICK_TYPE target);
+
 uint8_t
-ao_sleep(__xdata void *wchan);
+ao_sleep(void *wchan);
 
 void
-ao_wakeup(__xdata void *wchan);
+ao_wakeup(void *wchan);
+
+static inline void ao_mutex_get(uint8_t *m) {(void) m;}
+static inline void ao_mutex_put(uint8_t *m) {(void) m;}
 
 #endif /* _AO_NOTASK_H_ */