Posts: 6
Threads: 1
Joined: Mar 2013
Hello,
i have tried to switch on the watchdog (FWDTEN_ON)
In settings.inc i uncoment KICK_WD but with this settings the bootloader want work anymore.
He works only with watchdog off (FWDTEN_OFF).
Knows anybody what happend?
best regards ggcode
Posts: 623
Threads: 0
Joined: Nov 2009
Hi,
Please post the entire MPLAB IDE project (zipped).
Thanks
Posts: 6
Threads: 1
Joined: Mar 2013
Hi,
i have found the problem.
this config does not run:
Code:
FWDTEN_ON/*watchdog timer*/ & WINDIS_OFF/*windowed wdt*/ & FWPSA_PR32/*watchdog prescalar*/ & WDTPS_PS256/*watchdog postscalar*/
and this config runs well:
Code:
FWDTEN_ON/*watchdog timer*/ & WINDIS_ON/*windowed wdt*/ & FWPSA_PR32/*watchdog prescalar*/ & WDTPS_PS256/*watchdog postscalar*/
Thanks for this nice bootloader
Posts: 623
Threads: 0
Joined: Nov 2009
Which device are you using?
Posts: 6
Threads: 1
Joined: Mar 2013
Hi,
i using PIC24FJ64GA006
Posts: 623
Threads: 0
Joined: Nov 2009
Thanks, I cannot why your solutions works. Can you?
I remember having a similar problem with the watchdog on a PIC24FJ device.
Posts: 6
Threads: 1
Joined: Mar 2013
Hi,
I just experimented with the config bits. And now, it seems to be running.
But I don't know exactly why.