Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does the .NET Micro Framework support the CAN bus?

I know that the .NET Micro Framework supports the I²C bus. Are there some libraries for CAN or CANopen too?

If not, does it support CAN without using other peripherals? Can I build CAN support myself?

like image 778
Markus Bruckner Avatar asked Dec 30 '22 17:12

Markus Bruckner


2 Answers

The offerings from GHI support CAN through their .NET Micro extensions. See here for a development system.

Refer to the documentation here for details on the CAN implementation:

like image 151
Michael Baker Avatar answered Jan 01 '23 07:01

Michael Baker


Support regarding CAN can be very specific to the hardware layer underneath. Does the chip have mailboxes? How many? Do they support extended IDs or just standard IDs? What sort of autorouting is supported by a mailbox / channel?

Basically, I think any libraries you might find are going to be tied specifically to a hardware interface.

You might want to take a look at National Instruments - they tend to provide robust libraries for their hardware, even if they aren't the cheapest.

like image 27
Answerguru Avatar answered Jan 01 '23 06:01

Answerguru