Its free for you!
Ioannis
Nope, $50. Or am I missing out on "special promotion to forum moderators"?
https://store.melabs.com/cat/PBPUP.html
My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.
Not as dumb as yesterday, but stupider than tomorrow!
Well, there is no moderator offer.
Did you try to down load and install the later version and then auto activate it?
I do not really remember when was my upgrade that I had to pay. Then on, I just updated the compiler and it auto activated.
Ioannis
I was missing a pull-up on MCLR, and my soldering job was dodgey. I made a new harness, looks much nicer.
Still going nowhere in MCS+5; keep seeing HEX FILE MISSING before the command line window closes.
Managed to program using MPLAB IPE, I just don't get any blinky action on my Lab X-1.
I'm gonna set up a breadboard, got a feeling something is wonky on my Lab-X1 (either OSC setting, jumpers, or that programmer header.Connecting to MPLAB PICkit 4
Currently loaded versions:
Application version...........00.08.54
Boot version..................01.00.00
Script version................00.05.35
Script build number...........86fedc5c2e
Tool pack version ............1.13.1519
PICkit 4 is supplying power to the target (5.00 volts).
Target device PIC16F877 found.
Device Revision Id = 0x6
Device Id = 0x9a0
2023-04-04 19:42:56 -0400 - Programming...
************************************************** ***
Calculating memory ranges for operation...
Erasing...
The following memory area(s) will be programmed:
program memory: start address = 0x0, end address = 0x39
configuration memory
Programming/Verify complete
2023-04-04 19:42:59 -0400 - Programming complete
*** Release From Reset mode is enabled ***
Get rid of the config DEBUG_ON.
If you ever get to the point of hdw debugging that will be managed by the tool for you.
Also, when you were creating the IDE custom programmer entry, once you get to the step of setting the parameters there is no "Next" step... just "Finish"
Thanks, had already turned it off. Waiting for a reply from MeLabs forum to get the custom programmer working in MCS+5.
Kept playing with the Lab X-1 and MPLAB IPE, played with OSC, added PORT, used bits like I did in one of my programs; now the proper LED comes on, but no blinking on the Lab X-1.
Tried using another PIC just in case, no difference.Code:#CONFIG __config _HS_OSC & _WDT_OFF & _WRT_OFF & _BODEN_ON & _LVP_OFF & _CPD_OFF & _PWRTE_OFF & _DEBUG_OFF #ENDCONFIG DEFINE OSC 20 ADCON1 = 7 ' A/D off, all digital PORTD = %00000000 TRISD = %00000000 START: PORTD = %00000001 PAUSE 500 PORTD = %00000000 GOTO START Finish: end
But get this, I copied an old example of writing to the LCD and that worked, a bit wonky, but I can't get a solitary LED to blink.![]()
You won't see a 1uS blink
you probably meantCode:START: PORTD = 000001 PAUSE 500 PORTD = 000000 GOTO START
Code:START: PORTD = 000001 PAUSE 500 PORTD = 000000 PAUSE 500 GOTO START
Warning I'm not a teacher
Bookmarks