Glad to hear you resolved the issue.
When you say that language do you mean PicBASIC pro like
Code:
High BlinkyLED ' Set LED pin High
Pause 1000 ' Wait one Second
LCDOUT "Hello Dj tempo" ' Write message
Low BlinkyLED ' Set LED pin Low
Pause 1000 ' Wait one Second
or do you mean Assembly code like
Code:
RRF Send_bit, F
BTFSC STATUS, C ; Test Carry if 1 then set output
BSF OUTPUT
BTFSS STATUS, C ; Test Carry if 0 then clear output
BCF OUTPUT
BSF Send_Count, 6
GOTO Del_232
If its PicBASIC have a look at http://www.crownhill.co.uk/product.php?prod=17
http://www.mecanique.co.uk/products/compiler/pbp.html
or for examples and more reference
http://www.rentron.com/PicBasic/prod...CBASIC-PRO.htm
Hope that helps
Bookmarks