Charles Leo taught me to list every single CONFIG item in the header on every program. There is a document included with the PBP package that lists all the CONFIGs and what the options are for every...
mpgmike Yesterday, 16:09Thanks for your answer mpgmike,
I found the problem:
For default, the XINST was On, and this change the extended instruction set.
I change it to --> XINST_OFF, and everything works well.
...
See this post : http://www.picbasic.co.uk/forum/showthread.php?t=1426&p=7072#post7072
Maybe is useful !
I have read this thread several times and looked at the datasheet several time as well. I am having problems with code that has worked fine in the past and suddenly I can not make GPIO.0 and GPIO.3...
n0yox - 22nd April 2018, 23:05Try changing:
if tecla_dta = 1 then cnt_lixo_1 = cnt_lixo_1 + 1 : lcdout $FE, $C0,"Tcl Dta" : pause 1500
if tecla_esq = 1 then cnt_lixo_2 = cnt_lixo_2 + 1 : lcdout $FE, $C0,"Tcl Esq" : pause...
Hi everyone,
I'm starting a small program with Pic 18F2550, but it doesn't work well...
It should start with number 2 at Cnt_Lixo, and increment 1 every 1,5 seconds.
Sometimes (one in...
The mobile devices cannot access the site yet. This will need some extra work by our boss. He knows and when time allows I am sure he will do it.
Please be patient as all this require time and...
Re: Input problems with 12F629?
I just found my problem. It was these two lines
n0yox Today, 06:25SYMBOL RTOUT = GPIO.4
SYMBOL PEIZO = GPIO.5
I had changed my board on the last run and forgot to change the pin numbers in the code. The...