Giter Site home page Giter Site logo

espsoftwareserial's Introduction

EspSoftwareSerial

Implementation of the Arduino software serial library for the ESP8266

This fork implements interrupt service routine best practice. In the receive interrupt, instead of blocking for whole bytes at a time - voiding any near-realtime behavior of the CPU - phase detection and byte assembly is done in the main code.

Except at high bitrates, depending on other ongoing activity, interrupts in particular, this software serial adapter supports full duplex receive and send. At high bitrates (115200bps) send bit timing can be improved at the expense of blocking concurrent full duplex receives, with the SoftwareSerial::enableIntTx(false) function call.

Same functionality is given as the corresponding AVR library but several instances can be active at the same time. Speed up to 115200 baud is supported. The constructor also has an optional input buffer size arguments.

Please note that due to the fact that the ESP always have other activities ongoing, there will be some inexactness in interrupt timings. This may lead to inevitable, but few, bit errors when having heavy data traffic at high baud rates.

Resource optimization

The memory footprint can be optimized to just fit the amount of expected incoming asynchronous data. For this, the SoftwareSerial constructor provides two arguments. First, the octet buffer size for assembled received octets can be set. Read calls are satisfied from this buffer, freeing it in return. Second, the signal edge detection buffer of 32bit fields can be resized. One octet may require up to to 10 fields, but fewer may be needed, depending on the bit pattern. Any read or write calls check this buffer to assemble received octets, thus promoting completed octets to the octet buffer, freeing fields in the edge detection buffer.

Look at the swsertest.ino example. There, on reset, ASCII characters ' ' to 'z' are send. This happens not as a block write, but in single write calls per character. As the example uses a local loopback wire, every outgoing bit is immediately received back. Therefore, any single write call causes up to 10 fields - depending on the exact bit pattern - to be occupied in the signal edge detection buffer. In turn, as explained before, each single write call also causes received bit assembly to be performed, promoting these bits from the signal edge detection buffer to the octet buffer as soon as possible. Explaining by way of contrast, if during a a single write call, perhaps because of using block writing, more than a single octet is received, there will be a need for more than 10 fields in the signal edge detection buffer. The necessary size of the octet buffer only depends on the amount of incoming data until the next read call.

For the swsertest.ino example, this results in the following optimized constructor arguments to spend only the minimum RAM on buffers required:

The octet buffer size (bufSize) is 93 (91 characters net plus two tolerance). The signal edge detection buffer (isrBufSize) is 10, as each octet has 10 bits on the wire, which are immediately received during the write, and each write call causes the signal edge detection to promote the previously sent and received bits to the octet buffer.

In a more generalized scenario, calculate the bits (use message size in octets times 10) that may be asynchronously received to determine the value for isrBufSize in the constructor. Also use the number of received octets that must be buffered for reading as the value of bufSize. The more frequently your code calls write or read functions, the greater the chances are that you can reduce the isrBufSize footprint without losing data, and each time you call read to fetch from the octet buffer, you reduce the need for space there.

The size of the tables needed for interrupt dispatch can be adapted to the actual maximum number of SoftwareSerial instances in a sketch. To reduce the memory footprint of these tables, define SOFTWARESERIAL_MAX_INSTS to the total number of SoftwareSerial objects your sketch uses.

Updating EspSoftwareSerial in the esp8266com/esp8266 Arduino build environment

The EspSoftwareSerial is used as a Git submodule in the esp8266 source tree, specifically in .../esp8266/libraries/SoftwareSerial when using a Github repository clone in your Arduino sketchbook hardware directory. This supersedes any version of EspSoftwareSerial installed for instance via the Arduino library manager.

The responsible maintainer of the esp8266 repository has kindly shared the following command line instructions:

To update esp8266/arduino SoftwareSerial submodule to lastest master:

(optional, clean it:) $ rm -rf libraries/SoftwareSerial $ git submodule update --init (now update it:) $ cd libraries/SoftwareSerial $ git checkout master $ git pull

espsoftwareserial's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.