I believe this is correct for the epic programmer?
I believe this is correct for the epic programmer?
What about the code you are trying to load?
Dave
Always wear safety glasses while programming.
@ DEVICE PIC10F202,INTRC_OSC
@ DEVICE PIC10F202,MCLR_OFF
@ DEVICE PIC10F202,PROTECT_OFF
@ DEVICE PIC10F202,WDT_OFF
DEFINE OSC 4
BEGIN:
high GPIO.0
pause 500
low GPIO.0
pause 500
GoTo BEGIN
@ device pic10f202,mclre_off
Could be a missing "e" ???
Dave
Always wear safety glasses while programming.
_MCLRE_ON EQU H'0FFF'
_MCLRE_OFF EQU H'0FEF'
_CP_ON EQU H'0FF7'
_CP_OFF EQU H'0FFF'
_WDT_ON EQU H'0FFF'
_WDT_OFF EQU H'0FFB'
_IntRC_OSC EQU H'0FFF'
Are the config options when using MPASM. PM might be different...
Dave
Always wear safety glasses while programming.
Bookmarks