IEEE 802.15.4 subsystem
Sign in or create your account | Project List | Help
IEEE 802.15.4 subsystem Git Source Tree
Root/
| Source at commit cec05a0f5ea2fb4ff5637d418c7f5dae196abda8 created 6 years 9 months ago. By Werner Almesberger, atusb/atusb.pro: we don't use power.lib anymore | |
|---|---|
| 1 | /* |
| 2 | * include/cwtest.h - AT86RF230/231 constant wave test mode |
| 3 | * |
| 4 | * Written 2011 by Werner Almesberger |
| 5 | * Copyright 2011 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 | |
| 14 | #ifndef CWTEST_H |
| 15 | #define CWTEST_H |
| 16 | |
| 17 | #include <stdint.h> |
| 18 | |
| 19 | #include "atrf.h" |
| 20 | |
| 21 | |
| 22 | int cw_test_needs_reset(struct atrf_dsc *dsc); |
| 23 | void cw_test_begin(struct atrf_dsc *dsc, uint8_t cont_tx); |
| 24 | void cw_test_resume(struct atrf_dsc *dsc); |
| 25 | void cw_test_end(struct atrf_dsc *dsc); |
| 26 | |
| 27 | #endif /* !CW_TEST_H */ |
| 28 | |
