ds30 Loader free edition forums
16F1519 [solved] - Printable Version

+- ds30 Loader free edition forums (https://picbootloader.com/forum)
+-- Forum: Support (https://picbootloader.com/forum/forumdisplay.php?fid=3)
+--- Forum: 8-bit firmwares (https://picbootloader.com/forum/forumdisplay.php?fid=7)
+--- Thread: 16F1519 [solved] (/showthread.php?tid=434)



16F1519 [solved] - pjsr - 2011-10-18

Hi,
I'm trying to make working the ds30 loader in a 16F1519…

I would like to know something about the PAGESIZEW and ROWSIZEW.
How do I set them?

Thanks,

Pedro


RE: 16F1519 - Mikael Gustavsson - 2011-10-18

Hi,
Thanks for the bug report. Here comes a new devices.inc file.

Mikael


RE: 16F1519 - pjsr - 2011-10-18

Thank You, I will try it.



RE: 16F1519 - pjsr - 2011-10-22

Hello again,

In the 16f1519 datasheet it is said:
"
If the RX/DT function is on an analog pin,
the corresponding ANSEL bit must be
cleared for the receiver to function.
"

So, to make the ds30 loader working in it, I had to disable the analog function on the RX pin; modifying the ds30loader.asm file:

;------------------------------------------------------------------------------
; User specific entry code go here
;------------------------------------------------------------------------------

banksel ANSELC
bcf ANSELC, ANSC7 ;Disabling the analog function


BTW, excelent loader, thank you,

Pedro




RE: 16F1519 - Mikael Gustavsson - 2011-10-22

Thank you!
I will add a reminder about ansel in the code.