Table of Contents
Previous Chapter
The Fatal Error class provides notification that an irrecoverable condition exists and controls an expeditious watchdog CPU reset.
29.2 Uses
Any of the processes or functions may use Fatal Error. Normally, requests for this service are a result of some function encountering a illegal value or condition.
Specifically it provides the following features:
Figure 140 illustrates the relationship between the classes used by Fatal Error.
FIGURE 140. Fatal Error Class Relationships
Fatal Error uses Devices, and, Protocols, class categories.
IntrGuard - This class is provided by the Devices class category, and is used to prevent interrupts from interfering with FatalErrors activities.
TlmFatal - This class is provided by the Protocols class category and is responsible for insertion of the data into the packet and for initiating delivery of the panic message.
Watchdog - This class is provided by the Devices class category and is responsible for resetting the hardware watchdog timer.
The FatalError.report() 1: may be called by any active process. It is delivered a value identifying the error encountered, and a second argument which provides further information. A call to FatalError.report() never returns.
FIGURE 141. Fatal Error Scenario
FatalError.report() invokes IntrGuard.guard 2: which disables interrupts. FatalError will then touch() 3: the watchdog providing sufficient time to telemeter the error message. Failure to complete the following steps will result in the watchdog resetting when its regular interval completes since the disabled interrupts will keep the taskMonitor() from touching the watchdog.
report() then delivers the information to the TlmFatal form using its sendMessage() 4: function which installs the arguments provided by the client into a packet buffer, and hands it off to TlmManager.sendPanic() for delivery (not shown). sendPanic() attempts to allow an outgoing message to complete before resetting the telemetry device, handing off the message, and idling for a nominal interval before returning.
The Watchdog.forceReset() 5: is used to reset that device to the shortest interval, and then busy loops until the CPU is reset.
Superclasses: none
report()
This constructor initializes the FatalError instance.
enum Fatal_Code errorNum unsigned opInfo
Watchdog
interval to immediately reset the CPU.