pub trait NineDofClient {
    // Required method
    fn callback(&self, arg1: usize, arg2: usize, arg3: usize);
}
Expand description

Client for receiving done events from the chip.

Required Methods§

source

fn callback(&self, arg1: usize, arg2: usize, arg3: usize)

Signals a command has finished. The arguments will most likely be passed over the syscall interface to an application.

Implementors§