Type Alias Chip

Source
pub type Chip = NRF52<'static, Nrf52840DefaultPeripherals<'static>>;
Expand description

This platform’s chip type:

Aliased Type§

struct Chip { /* private fields */ }

Implementations

Source§

impl<'a, I> NRF52<'a, I>
where I: InterruptService + 'a,

Source

pub unsafe fn new(interrupt_service: &'a I) -> NRF52<'a, I>

Trait Implementations

Source§

impl<'a, I> Chip for NRF52<'a, I>
where I: InterruptService + 'a,

Source§

type MPU = MPU<8, 32>

The particular Memory Protection Unit (MPU) for this chip.
Source§

type UserspaceKernelBoundary = SysCall<CortexM4F>

The implementation of the interface between userspace and the kernel for this specific chip. Likely this is architecture specific, but individual chips may have various custom requirements.
Source§

fn mpu(&self) -> &<NRF52<'a, I> as Chip>::MPU

Returns a reference to the implementation for the MPU on this chip.
Source§

fn userspace_kernel_boundary( &self, ) -> &<NRF52<'a, I> as Chip>::UserspaceKernelBoundary

Returns a reference to the implementation for the interface between userspace and kernelspace.
Source§

fn service_pending_interrupts(&self)

The kernel calls this function to tell the chip to check for all pending interrupts and to correctly dispatch them to the peripheral drivers for the chip. Read more
Source§

fn has_pending_interrupts(&self) -> bool

Ask the chip to check if there are any pending interrupts.
Source§

fn sleep(&self)

Called when there is nothing left for the chip to do and it should enter a low power sleep state. This low power sleep state should allow interrupts to still be active so that the next interrupt event wakes the chip and resumes the scheduler.
Source§

unsafe fn atomic<F, R>(&self, f: F) -> R
where F: FnOnce() -> R,

Run a function in an atomic state, which means that interrupts are disabled so that an interrupt will not fire during the passed in function’s execution.
Source§

unsafe fn print_state(&self, write: &mut dyn Write)

Print out chip state (system registers) to a supplied writer. This does not print out the execution context (data registers), as this depends on how they are stored; that is implemented by syscall::UserspaceKernelBoundary::print_context. This also does not print out a process memory state, that is implemented by process::Process::print_memory_map. The MPU state is printed by the MPU’s implementation of the Display trait. Used by panic.