Panda II CAN Reference

I am trying to learn CAN and I can’t get the example to work.

In my program CAN.Message (or anything CAN) isn’t recognized.

(I start with just a blank FEZ Panda II project, clear out the LED stuff)

Here my namespaces are:

using System;
using System.Threading;

using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;

using GHIElectronics.NETMF.FEZ;

Those were there by default. I tried added a reference to CAN, only I could find one reference. It was for the Gadgeteer Module.

If someone could point me in the right place, I would appreciate it

From the documentation for the CAN class. This should be a start.

[quote]
Namespace: GHIElectronics.NETMF.Hardware

Assembly: GHIElectronics.NETMF.Hardware (in GHIElectronics.NETMF.Hardware.dll) Version: 4.1.8.0 (4.1.8.0)[/quote]

You need to add a using statement to your program and a reference to your project.

Oops, thank you. I was looking at SPOT.Hardware. Sorry for the troubles. Thanks Mike!