jfjlaros / simpleRPC

Simple RPC implementation for Arduino.
MIT License
50 stars 17 forks source link

Support SAMD and use Stream objects #13

Closed chrisflesher closed 3 years ago

chrisflesher commented 3 years ago

Pull Request Details

This simplifies the interface function call by allowing any Stream object to be used in the interface function call. This was already partially implemented, this PR finishes the job by updating the demo and documentation.

It also changes the supported library architecture from AVR to all to prevent architecture warnings from showing up in the library manager and compiler. This library successfully ran on an SAMD architecture and I don't see any reason why it should be limited to AVR.

jfjlaros commented 3 years ago

I just pushed a new branch named refactor. Could you please test that code and if it works, redirect this pull request to that branch?

chrisflesher commented 3 years ago

There is a new PR for the refactor branch