hi!
thanks for the reply.. I have this simple code that will lit the LED1,LED2 and LED3...using Pic16F682A. But I Want to control them to hyperterminal. Can you show me how to enable the RX on RB1?
[codes]
CMCON = 7 ' PortA = digital I/O
VRCON = 0 ' A/D Voltage reference disabled
TRISB = %11110000
begin:
high PortB.0
pause 100
low PortB.0
pause 100
high PortB.1
pause 100
low PortB.1
pause 100
high PortB.2
pause 100
low PortB.2
pause 100
goto begin
[/codes]




Bookmarks