-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrtty.h
24 lines (20 loc) · 882 Bytes
/
rtty.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* hadie - High Altitude Balloon flight software */
/*============================================================*/
/* Copyright (C)2010 Philip Heron <[email protected]> */
/* */
/* This program is distributed under the terms of the GNU */
/* General Public License, version 2. You may use, modify, */
/* and redistribute it under the terms of this license. A */
/* copy should be included with this source. */
#ifndef INC_RTTY_H
#define INC_RTTY_H
#include <stdint.h>
#include <avr/pgmspace.h>
extern void rtx_init(void);
extern void rtx_enable(char en);
extern void inline rtx_wait(void);
extern void rtx_data(uint8_t *data, size_t length);
extern void rtx_data_P(PGM_P data, size_t length);
extern void rtx_string(char *s);
extern void rtx_string_P(PGM_P s);
#endif