deep

a Cross Development Platform for Java

User Tools

Site Tools


runtime_library:exceptions:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
runtime_library:exceptions:start [2020/10/23 19:45] – [Exception Handling] ursgrafruntime_library:exceptions:start [2022/12/20 10:24] (current) – [Debug Mode on PowerPC Processors] ursgraf
Line 10: Line 10:
 </code> </code>
  
-Obviously you have to put the ''System.out'' onto an existing output stream, e.g. your standard output, see [[:first_example#Hello_World_with_System.out|]].+Obviously you have to put the ''System.out'' onto an existing output stream, e.g. your standard output, see [[firstexample:start|Hello World with System.out]]. 
 ===== Signaling with LED ===== ===== Signaling with LED =====
  
Line 19: Line 19:
 | 1x once | exception thrown in command | unchecked exception caught in //Task.loop// | | 1x once | exception thrown in command | unchecked exception caught in //Task.loop// |
 | 2x once | exception thrown in command | unchecked exception caught in //Kernel.loop// | | 2x once | exception thrown in command | unchecked exception caught in //Kernel.loop// |
-| 3x once | exception thrown in action method of task command | unchecked exception caught in //Task.loop//+| 3x once | exception thrown in action method of task | unchecked exception caught in //Task.loop// or check stack failed in kernel
-| 5x every second| Exception thrown | unchecked exception caught in kernel |+| 5x every second| exception thrown in boot method | unchecked exception caught in kernel 
 +| 1x followed by 2x| data abort exception | memory access threw data abort exception |
  
 ==== PowerPC based boards ==== ==== PowerPC based boards ====
-On the [[http://wiki.ntb.ch/infoportal/embedded_systems/mpc555/headerboard/start|NTB MPC555 Headerboard]] there is a single LED. On the [[http://wiki.ntb.ch/infoportal/embedded_systems/mpc5200/start|Freescale MPC5200]] module there is no LED, but we use the one on the carrier board (at pin Gpio_Wkup_7).+On the [[http://wiki.bu.ost.ch/infoportal/embedded_systems/mpc555/headerboard/start|NTB MPC555 Headerboard]] there is a single LED. On the [[http://wiki.bu.ost.ch/infoportal/embedded_systems/mpc5200/start|Freescale MPC5200]] module there is no LED, but we use the one on the carrier board (at pin Gpio_Wkup_7).
  
 ^ blinking pattern ^ state ^ comment ^ ^ blinking pattern ^ state ^ comment ^
Line 29: Line 30:
 | 1x once | exception thrown in command | unchecked exception caught in //Task.loop// | | 1x once | exception thrown in command | unchecked exception caught in //Task.loop// |
 | 2x once | exception thrown in command | unchecked exception caught in //Kernel.loop// | | 2x once | exception thrown in command | unchecked exception caught in //Kernel.loop// |
-| 3x once | exception thrown in action method of task command | unchecked exception caught in //Task.loop//+| 3x once | exception thrown in action method of task command | unchecked exception caught in //Task.loop// or check stack failed in kernel
-| 5x every second| Exception thrown | unchecked exception caught in kernel | +| 5x every second| exception thrown | unchecked exception caught in kernel | 
-| 1x followed by 2x every second| Machine Check Exception | bus error, PPC exception | +| 1x followed by 2x every second| machine check exception | bus error, PPC exception | 
-| 1x followed by 3x every second| System Call | sc-instruction, PPC exception | +| 1x followed by 3x every second| system call | sc-instruction, PPC exception | 
-| 1x followed by 4x every second| Floating Point Unavailable Exception | FPU switched off, PPC exception |+| 1x followed by 4x every second| floating point unavailable exception | FPU switched off, PPC exception |
  
 ===== Debug Mode on PowerPC Processors ===== ===== Debug Mode on PowerPC Processors =====
 The RCPU of the mpc555 has a built-in debug feature. Some of the PPC exceptions can cause the processor to enter debug mode, instead of running the appropriate exception handler. However, this can happen only in case of the processor running out of RAM. If you run the program out of flash, you can never enter debug mode (which wouldn't make sense).\\ The RCPU of the mpc555 has a built-in debug feature. Some of the PPC exceptions can cause the processor to enter debug mode, instead of running the appropriate exception handler. However, this can happen only in case of the processor running out of RAM. If you run the program out of flash, you can never enter debug mode (which wouldn't make sense).\\
-Debug mode is indicated on the [[http://wiki.ntb.ch/infoportal/embedded_systems/mpc555/usb-bdi|MPC555 USB Background Debugging Interface (USB-BDI)]] with the blue LED.+Debug mode is indicated on the [[http://wiki.bu.ost.ch/infoportal/embedded_systems/mpc555/usb-bdi|MPC555 USB Background Debugging Interface (USB-BDI)]] with the blue LED.
runtime_library/exceptions/start.1603475145.txt.gz · Last modified: 2020/10/23 19:45 by ursgraf