hadie/rtty.h

25 wiersze
882 B
C
Czysty Zwykły widok Historia

/* hadie - High Altitude Balloon flight software */
/*============================================================*/
/* Copyright (C)2010 Philip Heron <phil@sanslogic.co.uk> */
/* */
/* 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>
2010-06-08 10:19:37 +00:00
#include <avr/pgmspace.h>
2011-01-08 17:06:05 +00:00
extern void rtx_init(void);
2011-06-24 23:03:13 +00:00
extern void rtx_enable(char en);
2011-01-08 17:06:05 +00:00
extern void inline rtx_wait(void);
2010-06-16 21:36:30 +00:00
extern void rtx_data(uint8_t *data, size_t length);
2010-10-04 18:54:39 +00:00
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