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 89c52 with PC

Status
Not open for further replies.

omrox

Junior Member level 1
Joined
Sep 2, 2006
Messages
16
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,399
89c52 interfacing with pc

can java be used to interface 89c52 with the PC, via serila port ? if no why and which option is prefered .
 

interfacing 89s52 with serial port

well, i've never tried to interface any uC with the pc using java. But i know it is possible to work with hyper terminal + any uc you want.
I guess it is possible, and all you need to do is find out how to work with serial port in java.
good luck
 

89c52interfacewithpc

wot is the most prefferd programmin language used to interface. graphic C..
 

hai
you can interface the uc with the pc
via comport
it's very easy
program the uc at aspecified baud rate
write program for ur pc in any language,which will read the com port
that's it

sun
 

I wrote BCB app for win 2000
to access the COMx port I used:



sprintf(szCOMport, "COM%d", ComPortNr); // port file name
hComm = CreateFile(szCOMport,
GENERIC_READ | GENERIC_WRITE,
0,
0,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL ,// FILE_FLAG_OVERLAPPED,
NULL);

yuv
 

    omrox

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top