12 lines
		
	
	
		
			178 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			178 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef MC8051FUN_H
 | |
| #define MC8051FUN_H
 | |
| 
 | |
| #include <8052.h>
 | |
| 
 | |
| 
 | |
| void uart_init(long fosc, long baud);
 | |
| void uart_send_chr(char tx_data);
 | |
| void uart_send_str(const char *str);
 | |
| 
 | |
| #endif
 |