Hello,
I found the line where the check is done.
As quick workaround, I simply disable the test:
qtgui\pinguino_api\uploader\uploader8.py @ 491:
Now, I can download the sketch to the board. But it is a ugly way.
@ Pinguino developpers:
Do you think the below patch is valid with all PIC18 variants?
Code:
--- uploader8.py 2016-03-26 10:37:32.000000000 +0100
+++ uploader8.py 2016-03-26 10:37:43.000000000 +0100
@@ -489,4 +489,4 @@
self.add_report(" - with PIC%s (id=%X)" % (proc, device_id))
- if proc != board.proc:
+ if proc.replace('18lf', '18f') != board.proc:
self.add_report("Aborting: program compiled for %s but device has %s" % (board.proc, proc))
Thoma