We all hoped that PBP would find a way in the future but now I am convinced this will not happen.
People change, so microcontroller also do. Arduino, Pi, Python, and many many others are out there. PBP is considered outdated...
Ioannis
We all hoped that PBP would find a way in the future but now I am convinced this will not happen.
People change, so microcontroller also do. Arduino, Pi, Python, and many many others are out there. PBP is considered outdated...
Ioannis
Can only hope!!! I think it still has a market, just product is not being marketed and it's a difficult experience to get started with.... IE
Can't get my first code running...
Have given up trying to get MPX to work even with the rev. you suggested.
Hence current on version 3.65 of mpx.Only need this installed for the pickit3 to work mcs.
I've got MCS now comipling and writing to the micro, but code doesn't appear to be executing.
Have tried a few variation of registeres but program is as follows:
#CONFIG
CONFIG FOSC = RC ;
#ENDCONFIG
TRISB = %00000000
LED0 VAR PORTB.2 ' Assign name "LED" to PORTB.0
LED1 VAR PORTB.1 ' Assign name "LED" to PORTB.0
mainloop:
High LED0 ' Turn on LED connected to PORTB.0
High LED1 ' Turn on LED connected to PORTB.0
Pause 400 ' Delay for .5 seconds
Low LED0 ' Turn off LED connected to PORTB.0
Low LED1 ' Turn off LED connected to PORTB.0
Pause 400 ' Delay for .5 seconds
Goto mainloop ' Go back to loop and blink LED forever
End
Via the program options of MCS using the PCK3cmd.exe from the MPLABX with the following command line:
-P$target-device$ -F$hex-filename$ -B -E -M -L
Programming seems to work but have no flash led! MCLR is held high..
I'm sure I'm missing somethign so obvious...but any pointers appreciated.
************************************************** ***
Connecting to MPLAB PICkit 3...
Currently loaded firmware on PICkit 3
Firmware Suite Version.....01.49.09
Firmware type..............PIC18F
Target voltage detected
Target device PIC18F45K20 found.
Device ID Revision = 1c
Erasing...
Erase successful
Device Erased...
Programming...
The following memory area(s) will be programmed:
program memory: start address = 0x0, end address = 0x7f
configuration memory
Programming/Verify complete
PICKIT3 Program Report
17-Jun-2024, 15:02:41
Device Type:PIC18F45K20
Program Succeeded.
Batch Mode Count : 1
Batch Mode: Press Enter to repeat the same operation ! Enter (quit) or (q) to abort the operation
Rookie mistake should have had INTIO67 not RC for the clock!!
Ahhh
I hope you do not have many MPLABX version installed. Normaly they shouls co-exist but could also mess up things. Better be safe and uninstall all other version except 5.35 that works with the latest PBP.
As a programmer, I use Elnec BeeProg 2 and PicKit3 with a stand alone program by https://pickitplus.co.uk/Typesetter/ that supports Pickit2 and Pickit3 at the same app.
Ioannis
Thanks,
I've removed all other installs and switched to 5.35.
But I'm having problesm with 12F508 micros, seem like I get 2 chances to program the micro then, I get failed to program device error.
Swap out the micr and same thing. Purchased from Mouser so doubt it's a dodgie chip and it's definetely not a 12C508.
Scratching my head on that one!
I've ordered the programming software you pointed me to, just waiting on the license and see how that goes.
Rob.
sounds like you have over written the osccal/ value stored at the top of memory for 12f508.
Most programmers will not reprog that chip when the value is missing.
The old pickit2 can reset a value there, with a bit of work. Pk3 might be able to do it too.
Warning I'm not a teacher
Thanks,
Not sure how I would have and looking at that register even any value 0's or 1's, it would still work??
Considering the application doesn't require any precise timing, should I provide a value regardless?
But did find this as another possible reason:
https://forum.microchip.com/s/topic/...6KtEAK/t254415
Anyway I've got 5 pics left, hopefully I'll work it out soon!
Rob.
Bookmarks