Root/
| Source at commit 9081d91ca8d1e8d008bfde93944eb528d0da2898 created 10 years 11 months ago. By Werner Almesberger, tornado/cpu/: rearrange things and fix ERC problems | |
|---|---|
| 1 | /* |
| 2 | * fw/rf.h - RF interface |
| 3 | * |
| 4 | * Written 2012 by Werner Almesberger |
| 5 | * Copyright 2012 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 RF_H |
| 14 | #define RF_H |
| 15 | |
| 16 | #include <stdint.h> |
| 17 | |
| 18 | |
| 19 | void rf_init(void); |
| 20 | void rf_send(const void *buf, uint8_t size); |
| 21 | uint8_t rf_recv(void *buf, uint8_t size); |
| 22 | |
| 23 | #endif /* !RF_H */ |
| 24 | |
Branches:
master
tornado-v1
