Nigel
0f0fc9f252
Moved the PMM away from being object orientated as it is just plain annoying renamed src folder to source Set timeout to 5 seconds in the grub config
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!
|
|
} |