mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ba3088c4bd
into separate patch files
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
*** stock_iot-lab_M3/openwsn/02a-MAClow/stupidmac/stupidmac.h Thu Apr 24 11:01:36 2014
|
|
--- riot-openwsn-wip/openwsn/02a-MAClow/stupidmac/stupidmac.h Thu Apr 24 16:53:29 2014
|
|
***************
|
|
*** 47,60 ****
|
|
ACK_WAIT_TIME = 327, // 10ms
|
|
};
|
|
|
|
! void stupidmac_init();
|
|
! error_t stupidmac_send(OpenQueueEntry_t* msg);
|
|
! void stupidmac_sendDone(OpenQueueEntry_t* msg, error_t error);
|
|
void stupidmac_packet_received(OpenQueueEntry_t* pkt);
|
|
! void stupidmac_sendDone(OpenQueueEntry_t* packetReceived, error_t error);
|
|
! void timer_mac_backoff_fired();
|
|
! void timer_mac_watchdog_fired();
|
|
! void timer_mac_periodic_fired();
|
|
! bool stupidmac_debugPrint();
|
|
|
|
#endif
|
|
--- 47,60 ----
|
|
ACK_WAIT_TIME = 327, // 10ms
|
|
};
|
|
|
|
! void stupidmac_init(void);
|
|
! owerror_t stupidmac_send(OpenQueueEntry_t* msg);
|
|
! void stupidmac_sendDone(OpenQueueEntry_t* msg, owerror_t error);
|
|
void stupidmac_packet_received(OpenQueueEntry_t* pkt);
|
|
! void stupidmac_sendDone(OpenQueueEntry_t* packetReceived, owerror_t error);
|
|
! void timer_mac_backoff_fired(void);
|
|
! void timer_mac_watchdog_fired(void);
|
|
! void timer_mac_periodic_fired(void);
|
|
! bool stupidmac_debugPrint(void);
|
|
|
|
#endif
|