CNMAT / OSC

OSC: Arduino and Teensy implementation of OSC encoding
cnmat.berkeley.edu/oscuino
Other
727 stars 135 forks source link

Support for Teensy 4.x #114

Open sstaub opened 4 years ago

sstaub commented 4 years ago

A support for Teensy 4.0 and 4.1 is missing.

adrianfreed commented 4 years ago

I will take a look at this when a 4.1 arrives next week.

On May 24, 2020, at 04:50, Stefan Staub notifications@github.com wrote:

A support for Teensy 4.0 and 4.1 is missing.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.

sstaub commented 4 years ago

As an advice, Teensy have new macro definitions for each board, e.g. ARDUINO_TEENSY41, ARDUINO_TEENSY40 ... also for the older boards. The microcontroller is the same for 4.0 and 4.1

MaurinElectroTextile commented 3 years ago

Happy new year Adrian! If you make any progress for the Teensy 4.* support it will be useful for me to ;-)

arnoson commented 3 years ago

Any news on this? Would love to use this libarary with a teensy 4.1 Right now anything but the the SLIP encoded serial seems to work

Druuka commented 2 years ago

I'm also having issues with teensy 4.1 and the library. Would love to have it fully supported. I'm currently having issues routing messages after they have been parsed out of slip encoding. I have the same sketch working on an arduino ethernet without issue.

sstaub commented 2 years ago

@Druuka In the moment nothing happens, therefore I write my own implementation for the next version of my eOS library for ETC consoles but it will take some time if it is ready for publishing.

fcana commented 6 months ago

hi @sstaub i had a look on your eOS project and it's impressive. i'm trying to build something similar but with midi support (using usb host) so teensy 4.1 is now the only shot i have... did you find a way to work with sliposc on teensy 4.1? @wagne342 is that issue still open since so long time? tnx

arnoson commented 6 months ago

@fcana I'm using this library with a Teensy 4.1 and a slightly modified Slip Serial Usage of the modified Slip Serial with this library is here

fcana commented 6 months ago

@fcana I'm using this library with a Teensy 4.1 and a slightly modified Slip Serial Usage of the modified Slip Serial with this library is here

thank you @arnoson but it is not working for me... i need SlipEncodedUSBSerial in my project and I can't figure out how to use your mod library... any advice?

arnoson commented 6 months ago

This should work with a usb serial, at least I pass the SlipSerial class a reference of type usb_serial_class in the constructor or am I missing something?