1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-11-23 03:46:14 +02:00
ben-wpan/atusb/fw/mac.h
Werner Almesberger 647f3c0375 atusb/fw/: get rid of some more "int"s
No size change this time.
2013-03-29 19:19:49 -03:00

27 lines
595 B
C

/*
* fw/mac.h - HardMAC functions
*
* Written 2011, 2013 by Werner Almesberger
* Copyright 2011, 2013 Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef MAC_H
#define MAC_H
#include <stdbool.h>
#include <stdint.h>
extern bool (*mac_irq)(void);
bool mac_rx(int on);
bool mac_tx(uint16_t flags, uint16_t len);
void mac_reset(void);
#endif /* !MAC_H */