Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top