altos/cc1200: Adjust bit-sync configuration
[fw/altos] / src / drivers / ao_event.h
index 25c49c3574b7f0f629d9deeef7b6eaaa5c125bf1..584a845a3e14d8103ab67720d5fc754865ace603 100644 (file)
@@ -26,16 +26,16 @@ struct ao_event {
        uint8_t         type;
        uint8_t         unit;
        uint16_t        tick;
-       uint32_t        value;
+       int32_t         value;
 };
 
-uint8_t
+void
 ao_event_get(struct ao_event *ev);
 
 void
-ao_event_put_isr(uint8_t type, uint8_t unit, uint32_t value);
+ao_event_put_isr(uint8_t type, uint8_t unit, int32_t value);
 
 void
-ao_event_put(uint8_t type, uint8_t unit, uint32_t value);
+ao_event_put(uint8_t type, uint8_t unit, int32_t value);
 
 #endif /* _AO_EVENT_H_ */