You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
508 B

/**********************************************************************
*
* Filename: serial.h
*
* API para la aplicacion embebida
*
* META : ocultar el hardware a la aplicacion
*
**********************************************************************/
#ifndef _SERIAL_H
#define _SERIAL_H
void serial_init(void);
void serial_put_char(char outputChar);
char serial_get_char(void);
void serial_put_str(char * outputStr);
char* serial_get_str(void);
#endif /* _SERIAL_H */