diff options
author | Keith Packard <keithp@keithp.com> | 2012-07-29 16:22:23 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-29 16:22:23 -0700 |
commit | 59588ba34159b27c02e1a886b46497ecfa0cf4d3 (patch) | |
tree | e90de318e3c1f261adbf304fce0ab9b47c64b2ee /src/core/ao_send_packet.h | |
parent | 52e920bc7a98edf5c6f2ad0bd59d581011dcd5c9 (diff) |
Add ability to re-play telemetry through TeleDongle
This adds a new command to TeleDongle to send arbitrary data, and then
creates a new tool, 'ao-send-telem' that replays existing telemetry
files through TeleDongle.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao_send_packet.h')
-rw-r--r-- | src/core/ao_send_packet.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/core/ao_send_packet.h b/src/core/ao_send_packet.h new file mode 100644 index 00000000..526f7b55 --- /dev/null +++ b/src/core/ao_send_packet.h @@ -0,0 +1,24 @@ +/* + * Copyright © 2012 Keith Packard <keithp@keithp.com> + * + * 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; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + */ + +#ifndef _AO_SEND_PACKET_H_ +#define _AO_SEND_PACKET_H_ + +void +ao_send_packet_init(void); + +#endif /* _AO_SEND_PACKET_H_ */ |