Skip to content

Commit

Permalink
Refactor: Serial without timeout by default
Browse files Browse the repository at this point in the history
  • Loading branch information
brenocq committed Oct 8, 2023
1 parent 0a34ec2 commit daf7f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/atta/io/serial/serial.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Serial {
bool parityBit = false;
bool twoStopBits = false;
bool rtsCts = false;
float timeout = 1.0f; // 1 second
float timeout = 0.0f; // Timeout in seconds
StringId debugName = StringId("Unnamed io::Serial");
};

Expand Down

0 comments on commit daf7f98

Please sign in to comment.