Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 902 → Rev 932

/C-OSD/trunk/usart0.h
18,8 → 18,15
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
****************************************************************************/
 
#ifdef ANTENNATRACKTEST
#ifdef SERIALDEBUGDRAW
#define USART0ENABLE 1
#endif
#ifdef ANTENNATRACKTEST
#define USART0ENABLE 1
#endif
 
#ifdef USART0ENABLE
 
#ifndef _USART0_H
#define _USART0_H
 
31,22 → 38,22
void usart0_init();
 
 
/**
* send a single <character> through usart1
*/
void usart0_putc(unsigned char character);
 
/**
* send a <string> throught usart0
*/
void usart0_puts(char *s);
 
/**
* send a PGM<string> throught usart1
*/
void usart0_puts_pgm(const char* string);
/**
* send a single <character> through usart1
*/
void usart0_putc(unsigned char character);
 
/**
* send a <string> throught usart0
*/
void usart0_puts(char *s);
 
/**
* send a PGM<string> throught usart1
*/
void usart0_puts_pgm(const char* string);
 
 
#endif
 
#endif // ANTENNATRACKTEST