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 07b5bfddc052ab98a23cc55c060d07e037f35aae created 6 years 9 months ago. By Werner Almesberger, atusb/atrf.sch: move invisible footprint test, to avoid confusing eeshow | |
|---|---|
| 1 | /* |
| 2 | * atrf-txrx/perdump.h - Analyze and dump a recorded PER test |
| 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 PERDUMP_H |
| 15 | #define PERDUMP_H |
| 16 | |
| 17 | struct result_ops { |
| 18 | void (*begin)(void); |
| 19 | void (*undecided)(int symbols, double t); |
| 20 | void (*packet)(int symbols, int skip, double t); |
| 21 | void (*error)(int symbol); |
| 22 | void (*finish)(void); |
| 23 | }; |
| 24 | |
| 25 | |
| 26 | extern struct result_ops text_ops; |
| 27 | |
| 28 | #endif /* !PERDUMP_H */ |
| 29 | |
