Removed redundant default constructor

This commit is contained in:
Jan Gromeš 2018-04-08 20:09:09 +02:00
parent d245703d09
commit 24172b19f1
2 changed files with 0 additions and 5 deletions

View file

@ -1,9 +1,5 @@
#include "Module.h"
Module::Module() {
}
Module::Module(int cs, int tx, int rx, int int0, int int1) {
_cs = cs;
_tx = tx;

View file

@ -12,7 +12,6 @@
class Module {
public:
Module();
Module(int cs, int tx, int rx, int int0, int int1);
SoftwareSerial* ModuleSerial;