![](/media/cache/profiles/764f9642ebf04622c53ebc366a68c0a7.50x50_q85.jpg)
Xbee test 2
LPC1768/drv/eth/eth_drv.h@0:ffac63d6a7f0, 2012-07-21 (annotated)
- Committer:
- takashiyamanoue
- Date:
- Sat Jul 21 04:08:27 2012 +0000
- Revision:
- 0:ffac63d6a7f0
xbee test 2
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
takashiyamanoue | 0:ffac63d6a7f0 | 1 | |
takashiyamanoue | 0:ffac63d6a7f0 | 2 | /* |
takashiyamanoue | 0:ffac63d6a7f0 | 3 | Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com) |
takashiyamanoue | 0:ffac63d6a7f0 | 4 | |
takashiyamanoue | 0:ffac63d6a7f0 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy |
takashiyamanoue | 0:ffac63d6a7f0 | 6 | of this software and associated documentation files (the "Software"), to deal |
takashiyamanoue | 0:ffac63d6a7f0 | 7 | in the Software without restriction, including without limitation the rights |
takashiyamanoue | 0:ffac63d6a7f0 | 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
takashiyamanoue | 0:ffac63d6a7f0 | 9 | copies of the Software, and to permit persons to whom the Software is |
takashiyamanoue | 0:ffac63d6a7f0 | 10 | furnished to do so, subject to the following conditions: |
takashiyamanoue | 0:ffac63d6a7f0 | 11 | |
takashiyamanoue | 0:ffac63d6a7f0 | 12 | The above copyright notice and this permission notice shall be included in |
takashiyamanoue | 0:ffac63d6a7f0 | 13 | all copies or substantial portions of the Software. |
takashiyamanoue | 0:ffac63d6a7f0 | 14 | |
takashiyamanoue | 0:ffac63d6a7f0 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
takashiyamanoue | 0:ffac63d6a7f0 | 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
takashiyamanoue | 0:ffac63d6a7f0 | 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
takashiyamanoue | 0:ffac63d6a7f0 | 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
takashiyamanoue | 0:ffac63d6a7f0 | 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
takashiyamanoue | 0:ffac63d6a7f0 | 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
takashiyamanoue | 0:ffac63d6a7f0 | 21 | THE SOFTWARE. |
takashiyamanoue | 0:ffac63d6a7f0 | 22 | */ |
takashiyamanoue | 0:ffac63d6a7f0 | 23 | |
takashiyamanoue | 0:ffac63d6a7f0 | 24 | #ifndef ETHDRV_H |
takashiyamanoue | 0:ffac63d6a7f0 | 25 | #define ETHDRV_H |
takashiyamanoue | 0:ffac63d6a7f0 | 26 | |
takashiyamanoue | 0:ffac63d6a7f0 | 27 | #ifdef __cplusplus |
takashiyamanoue | 0:ffac63d6a7f0 | 28 | extern "C" { |
takashiyamanoue | 0:ffac63d6a7f0 | 29 | #endif |
takashiyamanoue | 0:ffac63d6a7f0 | 30 | |
takashiyamanoue | 0:ffac63d6a7f0 | 31 | void eth_poll(); |
takashiyamanoue | 0:ffac63d6a7f0 | 32 | err_t eth_init(struct netif* netif); |
takashiyamanoue | 0:ffac63d6a7f0 | 33 | void eth_address(char* mac); |
takashiyamanoue | 0:ffac63d6a7f0 | 34 | void eth_free(); |
takashiyamanoue | 0:ffac63d6a7f0 | 35 | |
takashiyamanoue | 0:ffac63d6a7f0 | 36 | #ifdef __cplusplus |
takashiyamanoue | 0:ffac63d6a7f0 | 37 | }; |
takashiyamanoue | 0:ffac63d6a7f0 | 38 | #endif |
takashiyamanoue | 0:ffac63d6a7f0 | 39 | |
takashiyamanoue | 0:ffac63d6a7f0 | 40 | #endif |