hadie/hadie.c

33 wiersze
814 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. */
2010-06-07 12:10:32 +00:00
#include "config.h"
2010-06-08 10:45:12 +00:00
#include <util/delay.h>
#include <avr/interrupt.h>
2010-06-08 10:19:37 +00:00
#include "rtty.h"
#include "rs8.h"
int main(void)
{
2010-06-08 10:45:12 +00:00
/* Initalise the radio, and let it settle */
2010-06-08 10:19:37 +00:00
rtx_init();
2010-06-08 10:45:12 +00:00
_delay_ms(2000);
/* Start interrupts and enter main loop */
sei();
2010-06-08 10:45:12 +00:00
while(1)
{
}
return(0);
}