Removed redundant default constructor
This commit is contained in:
parent
d245703d09
commit
24172b19f1
2 changed files with 0 additions and 5 deletions
|
@ -1,9 +1,5 @@
|
||||||
#include "Module.h"
|
#include "Module.h"
|
||||||
|
|
||||||
Module::Module() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
Module::Module(int cs, int tx, int rx, int int0, int int1) {
|
Module::Module(int cs, int tx, int rx, int int0, int int1) {
|
||||||
_cs = cs;
|
_cs = cs;
|
||||||
_tx = tx;
|
_tx = tx;
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
|
|
||||||
class Module {
|
class Module {
|
||||||
public:
|
public:
|
||||||
Module();
|
|
||||||
Module(int cs, int tx, int rx, int int0, int int1);
|
Module(int cs, int tx, int rx, int int0, int int1);
|
||||||
|
|
||||||
SoftwareSerial* ModuleSerial;
|
SoftwareSerial* ModuleSerial;
|
||||||
|
|
Loading…
Add table
Reference in a new issue