Root/atusb/fw/mac.h

Source at commit 1f003f1c2100f7f3670106fd13df0eaec7a0e4e1 created 7 years 3 months ago.
By Werner Almesberger, atusb/atusb.kicad_pcb: grow RF feed trace to 1.9 mm, for 1.0 mm PCB
1/*
2 * fw/mac.h - HardMAC functions
3 *
4 * Written 2011, 2013 by Werner Almesberger
5 * Copyright 2011, 2013 Werner Almesberger
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13#ifndef MAC_H
14#define MAC_H
15
16#include <stdbool.h>
17#include <stdint.h>
18
19
20extern bool (*mac_irq)(void);
21
22bool mac_rx(int on);
23bool mac_tx(uint16_t flags, uint8_t seq, uint16_t len);
24void mac_reset(void);
25
26#endif /* !MAC_H */
27

Archive Download this file



interactive