Yes. BTW there is no such thing as a 1M baudrate for the USB Serial. It will always transmit with the full USB speed.
Here a (very) basic example how to read serial data from the Teensy in c#
...
Type: Posts; User: luni
Yes. BTW there is no such thing as a 1M baudrate for the USB Serial. It will always transmit with the full USB speed.
Here a (very) basic example how to read serial data from the Teensy in c#
...
As promised, a minimal example which compiles and works. The Teensy firmware repeatedly sends a raw hid frame where the first byte contains a counter to the PC. The PC software waits until it...
HID is limited to 64kB /s. 5x32bit @ 10kHz gives 200kB/s that is going to be difficult :-)
Never had any latency problems with Serial and c# but that of course depends on the requirements. However, I'm not sure if HID will be better (latency is probably more a USB problem).
Anyway, never...
Do you want to send the data via Serial or via HID?