1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2025-04-21 12:27:27 +03:00

atusb/fw/: convert functions returning "int" to "bool"

Firmware size is down from 5612 to 3590 bytes. Wow !
This commit is contained in:
Werner Almesberger
2013-03-29 19:14:11 -03:00
parent c9ab070ffd
commit a8db238cbb
15 changed files with 74 additions and 61 deletions

View File

@@ -13,13 +13,14 @@
#ifndef MAC_H
#define MAC_H
#include <stdbool.h>
#include <stdint.h>
extern int (*mac_irq)(void);
int mac_rx(int on);
int mac_tx(uint16_t flags, uint16_t len);
bool mac_rx(int on);
bool mac_tx(uint16_t flags, uint16_t len);
void mac_reset(void);
#endif /* !MAC_H */