Skip to content

Commit

Permalink
Renamed ackno to acknowledge
Browse files Browse the repository at this point in the history
  • Loading branch information
TekuConcept committed Mar 23, 2017
1 parent 1609874 commit e74a904
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Serial {
int fd;

void configure();
void ackno();
void acknowledge();

public:
Serial(std::string device);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Serial::Serial(std::string device) {

configure();
#endif
ackno();
acknowledge();
}

Serial::~Serial() {
Expand Down Expand Up @@ -59,7 +59,7 @@ void Serial::configure() {
}
}

void Serial::ackno() {
void Serial::acknowledge() {
std::string response = readString();
#ifdef DEBUG
LOG("Arduino Message: " << response << "\n");
Expand Down

0 comments on commit e74a904

Please sign in to comment.