mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-05 10:26:15 +02:00
862b554e2d
This function set isn't really usable for real communication. Its main purpose is to help with testing the firmware. - tools/lib/driver.h (struct atrf_driver): added driver functions for HardMAC access - tools/include/atrf.h (atrf_rx_mode, atrf_rx, atrf_tx), tools/lib/atrf.c: functions to enable/disable HardMAC mode and to send/receive frames
25 lines
537 B
C
25 lines
537 B
C
/*
|
|
* fw/mac.h - HardMAC functions
|
|
*
|
|
* Written 2011 by Werner Almesberger
|
|
* Copyright 2011 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 <stdint.h>
|
|
|
|
|
|
extern int (*mac_irq)(void);
|
|
|
|
int mac_rx(int on);
|
|
int mac_tx(uint16_t flags, uint16_t len);
|
|
|
|
#endif /* !MAC_H */
|