Software serial, for when you are out of serial pins

Dependents:   BufferedSoftSerial neurGAI_Seeed_BLUETOOTH LPC-SD-35 ESP-WROOM-02_test ... more

Files at this revision

API Documentation at this revision

Comitter:
Sissors
Date:
Sun Apr 27 19:48:40 2014 +0000
Parent:
7:7de3e1019e23
Child:
9:4e4617c4a441
Commit message:
And to be sure it calculates correctly

Changed in this revision

SoftSerial_tx.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/SoftSerial_tx.cpp	Sun Apr 27 19:48:17 2014 +0000
+++ b/SoftSerial_tx.cpp	Sun Apr 27 19:48:40 2014 +0000
@@ -14,7 +14,7 @@
     while(!writeable());
     tx_bit = 0;         //Just to make sure it appears as non-writable to other threads/IRQs
     tx->write(0);
-    wait_us(bit_period * _total_bits * 3 / 2);
+    wait_us((bit_period * _total_bits * 3) / 2);
     tx->write(1);
     tx_bit = -1;
 }