[][src]Function tmc2209::send_write_request

pub fn send_write_request<R, U>(
    slave_addr: u8,
    reg: R,
    uart_tx: &mut U
) -> Result<(), U::Error> where
    R: WritableRegister,
    U: Write<u8>, 

Construct a write access datagram for register R of the slave at the given address and send it via UART.

This simply calls write_request internally before writing the request via U::bwrite_all.