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"
|
||||
|
||||
Module::Module() {
|
||||
|
||||
}
|
||||
|
||||
Module::Module(int cs, int tx, int rx, int int0, int int1) {
|
||||
_cs = cs;
|
||||
_tx = tx;
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
|
||||
class Module {
|
||||
public:
|
||||
Module();
|
||||
Module(int cs, int tx, int rx, int int0, int int1);
|
||||
|
||||
SoftwareSerial* ModuleSerial;
|
||||
|
|
Loading…
Add table
Reference in a new issue