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
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