tried prying up the Vdd and Vss pins and giving them separate power during programming. same error at 0000.
noticed that the DIP and SOIC versions have the Data and Clock pins in different locations. tried jumping them during programming. same problem.
i notice also that the datasheet for the 10F222 calls these pins ICSPDAT and ICSPCLK. I'm using the meLabs USB Programmer with ZIF adapter... could this be screwing me up? I program chips often and with great success. you might say it's a living... gotta get this 10F222 to work so I can pay rent!
i've used MPASM and the other one.
could somebody try to program this code on a 10F222?
i'm at the end of my rope...
Code:
@ Device PIC10F222, IOFSCS_8MHZ, MCPU_OFF, WDT_OFF, PROTECT_OFF, MCLR_OFF
ADCON0 = %00000000
TRISIO = %00000000
GPIO = 0
pause 1000
Main:
high GPIO.0
pause 500
low GPIO.0
high GPIO.1
pause 500
low GPIO.1
high GPIO.2
pause 500
low GPIO.2
pause 500
goto MAIN
Bookmarks