Tagged Questions

Controller–area network (CAN or CAN-bus) is a vehicle bus standard designed to allow microcontrollers and devices to communicate with each other within a vehicle without a host computer. CAN is a message based protocol, designed specifically for automotive applications but now also used in other areas such as industrial automation and medical equipment.

learn more… | top users | synonyms

9
votes
1answer
1k views

Java and CANopen

Background Dear friends, I am required to create a java program on a laptop to receive/send CANopen messages. RJ45 is chosen to be the network's physical medium. I am new to CANopen and Java ...
4
votes
3answers
1k views

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 ...
3
votes
4answers
602 views

CANopen protocol

We have a robot project where the motor controllers use CANopen for communication. I need to communicate with these motor controllers using a Master microcontroller. The problem is that I need to ...
3
votes
5answers
938 views

Robust and easy to implement serial bus (automotive application) [closed]

What serial communication bus would you use in a automotive embedded system if your main selection criteria were: Electrically robust Slow speed (32 kb/s) Easy to program Easy to interface ...
2
votes
2answers
85 views

Overload and errror differentiation by CAN controller?

i would like to know how the can controller differentiates the overload frame and error frame when it was received in the CAN bus? As far as to my knowledge, Theses two frames are having same frame ...
2
votes
4answers
187 views

Can you recommend good reading on CAN and MOST protocols?

Can you recommend (any) good reading (books, links, etc.) on CAN and/or MOST protocols?
1
vote
1answer
31 views

What happens if bus-off error occured in CAN controller while car is in moving

I know that in CAN controller if the error count reaches some threshold(say 255), Bus off will occur which menas that particular CAN node will get switched off from the CAN network. So there wont be ...
1
vote
2answers
53 views

How do I access(open/read/etc) /dev devices from a kernel module?

I have received a driver (PCAN driver for PCI card, using rtdm), that creates /dev/pcan0 and /dev/pcan1 is compiled as a netdev driver. There are many facilities that come with this driver, but they ...
1
vote
2answers
434 views

STM32f103 Micro controller CAN messages

I am wondering if anyone is familiar with any STM32f10x micro-controllers? If so, I am having some problems configuring a CAN driver. I can run the demo code, which is set to a loop_Back mode, but I ...
1
vote
2answers
439 views

Programming for the SAE J1939 standard

I'm trying to find information on how to program an embedded mobile controller such as the ifm R 360. Where could I find specific information on the programming language used, the required development ...
1
vote
1answer
189 views

CANopen PDOs and a communication profile

If the data contains more than one value, how do I know what these values represent? And how do I break up the data into individual values? Am I right to say that the relationship between the PDOs and ...
1
vote
2answers
1k views

CANopen PDO

I am trying to understand the CANopen protocol. For now, I do not have any CAN hardware nor the CANopen stack to experiment with. I would like to know how to write a Java program to simply interpret ...
0
votes
0answers
22 views

disable Enter key (keyboard) to submit

My Form looks like this: <form name="form" action="page.php" method="post"> <label for="link">link</label> <input type="text" name="link" value="" /> <input ...
0
votes
0answers
34 views

how can we implement CAN Application Layer(CAL) protocol in iphone/android

I need to interface a device which is supporting CANBus ,So for communication with that I need to follow CAL,So can any one help that ho can I implement CAN Application Layer(CAL) protocol in ...
0
votes
0answers
18 views

Linux: using getsockopt() to get filters on a CAN interface?

Is there some way to find out how many filters are set on a raw CAN socket? Using getsockopt() I can retrieve the filters, but I don't seem to be able to extract how many filters I need to have space ...
0
votes
2answers
163 views

CANOpen/CAN BUS, what I need and protcol (OD?) where I can communicate between PC terminal and CAN device module.

I have dsPIC33 with ECAN and wish to establish a protcol (using SDO if possible) in such way that it communicate between terminal software and dsPIC33 where I can performs diagnostic within dsPIC33 ...
0
votes
0answers
14 views

Is there a MIME type for CAN data?

I have a system that processes messages from various sources and I put a MIME type on each incoming message which is used for dispatching further down the line. One type of messages coming in is data ...
0
votes
2answers
425 views

Compile Linux kernel module (lincan)

I use Ubuntu 10.10 - 2.6.35.23-generic I want to compile the lincan-module (http://sourceforge.net/projects/ocera/), but it doesn't work like I want... That's my first compilation of a kernel module. ...
0
votes
1answer
155 views

CAN Controller DLL with Java Application. Unable to open CAN port

I am creating a Java application that controls a Controller Area Network (CAN) controller via a vendor-supplied can.dll file. can.dll contains a function bool openPort(DWORD memAddr) that allows the ...
0
votes
2answers
132 views

CANopen - Fastest rate at which PDOs are received

Assuming highest baud rate, what is the highest rate at which PDOs are received?
0
votes
2answers
107 views

CAN interface physical memory address

May I know where/how to locate the physical memory address of my CAN interface card? I need to use this to open a port.
0
votes
1answer
198 views

Writing a CANopen test utility

How do I listen in (preferably using Java) on a small set of well-defined CANopen messages without a commercial CANopen stack?
0
votes
2answers
884 views

A programmer trying to understand CANopen

Will the CAN interface card likely be installed as a COM port? How do I break up a message to be sent as separate frames? What about assembling data from multiple frames received into one message? Is ...