(device: Device, configuration: FifoConfig)
| 325 | } |
| 326 | |
| 327 | pub fn uart_configure_fifo(device: Device, configuration: FifoConfig) { |
| 328 | let addr = get_addr(device) + 0x28; |
| 329 | assign(addr, fifo_config_to_u32(&configuration, 0x0)); |
| 330 | } |
| 331 | |
| 332 | pub fn uart_set_pin_config(device: Device, mode: InputTrigger) { |
| 333 | let addr = get_addr(device) + 0xC; |
no test coverage detected