hadie/rtty.h

24 wiersze
841 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>
2010-06-16 21:36:30 +00:00
extern void rtx_init();
extern void inline rtx_wait();
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