--
You received this message because you are subscribed to the Google Groups "UAVCAN" group.
To unsubscribe from this group and stop receiving emails from it, send an email to uavcan+unsubscribe@googlegroups.com.
To post to this group, send email to uav...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/uavcan/f846c70e-6ab7-4ca2-b805-1b5c7ee268c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Would you be interested in using the FlexCAN interface that is built into the Teensy 3.2 board?
It still needs a CAN PHY but at least it's IP built into the processor. Looks like there is activity out there.
My first sensor i used was an Arduino for a simple sensor.
But i can cancel it with Arduino because it was to slow on the can bus side.
Now i use a STM8.
Regards
Bernhard
--
You received this message because you are subscribed to a topic in the Google Groups "UAVCAN" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/uavcan/AyzkKKK32bM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to uavcan+unsubscribe@googlegroups.com.
To post to this group, send email to uav...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/uavcan/6540e1f1-57e0-458f-adcf-82a2af79a56b%40googlegroups.com.
Hi LonoxI should explain more.I am still talking about UAVCANARD on an Ardunio board.BUT - use hardware (Teensy 3.2 or 3.6) which has the CAN interface built into the part.For CAN you still need a PHY. A PHY is the physical layerr interface or electrical signalling component.The PHY interfaces the correct currents and voltages for typical CAN.This is the same idea as a UART (3V or 5V logic level) vs a physical interface like RS232 (actually specified at 15V)Hopefully i made this clearer?I just noticed that some people were aleady working with Teensy and CAN.Since the CAN is internal to the Teensy it might be easier to work with and certainly better performance.Regards-iain
On Thu, Feb 8, 2018 at 1:41 AM, lonox <ohoch...@gapps.cityu.edu.hk> wrote:
On Wednesday, February 7, 2018 at 1:21:28 PM UTC+8, Iain Galloway wrote:Would you be interested in using the FlexCAN interface that is built into the Teensy 3.2 board?
I will have a look at your link. I guess you suggest it because it will be less work to transfer it to arduino than UAVCANARD?
It still needs a CAN PHY but at least it's IP built into the processor. Looks like there is activity out there.
What is a CAN PHY?
--
You received this message because you are subscribed to a topic in the Google Groups "UAVCAN" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/uavcan/AyzkKKK32bM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to uavcan+un...@googlegroups.com.
To post to this group, send email to uav...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "UAVCAN" group.
To unsubscribe from this group and stop receiving emails from it, send an email to uavcan+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/uavcan/8126027e-6f53-4eb3-be29-619d2554d331%40googlegroups.com.
will libuavcan compile on arduinos? and behave reasonable - i mean fast enough?On Wed, Feb 14, 2018 at 12:28 AM, Pavel Kirienko <pavel.k...@gmail.com> wrote:Nope, it doesn't. Libcanard is a tough library for tough people - you are provided with the bare transport layer, and everything on top of it has to be coded up manually.If you want a higher-level approach with a convenient, highly abstract API, consider using libuavcan.Pavel.On Tue, Feb 13, 2018 at 6:25 PM, Olaf Thorsten HOCHHERZ <ohoch...@gapps.cityu.edu.hk> wrote:ah i mean that in the "Dynamic node ID allocation" I see on the monitoring device recurring messages in the following form
Extended ID: 0x18974D00 DLC: 8 Data: 0x01 0x00 0x01 0x02 0x03 0x04 0x05 0xC0(only the last byte of the data array is changing (from 0xC0 to 0xDF))It seems to me that it can be only the broadcasted message to request a node ID.My question should have been If libcanard contains a function which helps with the dynamic node ID allocation