pub unsafe trait EntryPoint {
;
// Required method
;
}
Expand description
Defines the entry points of a port instantiation. Implemented by
use_port!
.
This trait is not intended to be implemented in any other means.
The PendSV handler.
- This method must be registered as a PendSV handler. The callee-saved
registers must contain the values from the background context.
Proceed with the boot process.
- The processor should be in Thread mode.
- This method hasn’t been entered yet.