| 190 | } |
| 191 | |
| 192 | static rt_int32_t spi_soft_get_mosi(void *data) |
| 193 | { |
| 194 | struct rt_soft_spi_config *cfg = (struct rt_soft_spi_config *)data; |
| 195 | return rt_pin_read(cfg->mosi); |
| 196 | } |
| 197 | |
| 198 | static rt_int32_t spi_soft_get_miso(void *data) |
| 199 | { |
nothing calls this directly
no test coverage detected