David Sidrane 391d103bfd hardfault_log:Not having a ulog file to append to is not an error
The hardfault keeps track of the number of reboot without a
   commit to disk. A commit to disk is the act of writing the
   fault data from the bbsram to the hardfault file, not the
   ulog file. The sucessful commit rearms the hardfault system.

   When ulog appending was added it treated the lack of a ulog
   file as an error. This prevented the hardfault_log reset
   from being called because the hardfault_log commit returned
   an error.

   	if hardfault_log check
	then
		if hardfault_log commit
		then
			hardfault_log reset
		fi
	fi

   This change treats the lack a a ulog as a non error.
2017-10-06 12:16:08 -10:00
..
2017-07-14 11:57:11 +02:00
2017-10-06 20:40:02 +02:00
2017-09-29 10:13:51 -04:00
2017-07-14 11:57:11 +02:00
2017-07-14 11:57:11 +02:00
2017-08-09 22:28:05 +02:00
2017-09-07 10:27:36 +02:00
2017-09-28 16:50:47 +01:00