interfacing raspberry pi with arduino uno

Status
Not open for further replies.

vijayramnani

Newbie level 1
Joined
Mar 4, 2014
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
6
hello friends ,
i am trying to connect arduino uno with raspberry pi through usb port .
i am getting following errors in c program.
error:undefined reference to "serialOpen"
error:undefined reference to "serialGetchar"

can anybody help me????
 

In most programming languages, C included, the "undefined reference" usually means exactly that. The name used is not defined anywhere previously. It is either not declared at all, or has not encountered a place previously where it was given an actual value.

This might be because it just does not exist, or was not seen because it was not in included header, or it was not present in the headers, or some necessary program was not in the set of those "included" at the beginning.

It can even be because the name was spelled wrongly, or was case-sensitive.
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…