can you post also the fuse configuration?
Ioannis
Hello,
in PICAXE no need to use any config.
In picbasic I use this:
But I also used this:Code:#CONFIG __config _INTRC_OSC_NOCLKOUT & _WDT_OFF & _MCLRE_OFF & _CP_OFF #ENDCONFIG
Code:#CONFIG __config _INTRC_OSC_NOCLKOUT & _WDT_OFF & _MCLRE_ON & _CP_OFF #ENDCONFIG
The weak pullup on GP3 is enabled only when MCLR is enabled.
You may try also ANSEL to set it to
DO
ANSEL=0
PAUSE 500
ANSEL.3=1
PAUSE 500
LOOP
This will enable and disable the weak pullup.
Ioannis
Bookmarks