19 lines
		
	
	
		
			227 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			227 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "serial.h"
 | |
| 
 | |
| Serial Serial::init() {
 | |
|     // No clue what to setup yet!
 | |
| 
 | |
|     return Serial();
 | |
| }
 | |
| 
 | |
| void Serial::print(){
 | |
|     // Do nothing!
 | |
| }
 | |
| 
 | |
| Serial::Serial(){
 | |
|     // Do nothing!
 | |
| }
 | |
| 
 | |
| Serial::~Serial(){
 | |
|     // Do nothing!
 | |
| } |