Root/atusb/fw/mac.h

Source at commit 0ff0c31c3ff24d40c5ee4d2391cb63f83e2b6e7f created 7 years 3 months ago.
By Werner Almesberger, atusb/Makefile (f, b, upload): convenience targets
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