diff --git a/rp2040-hal/src/spi.rs b/rp2040-hal/src/spi.rs index e188d1598..6c5f345ae 100644 --- a/rp2040-hal/src/spi.rs +++ b/rp2040-hal/src/spi.rs @@ -254,6 +254,11 @@ impl, const DS: u8> Spi, const DS: u8> Spi { /// Create new not initialized Spi bus. Initialize it with [`.init`][Self::init] /// or [`.init_slave`][Self::init_slave]. + /// + /// Valid pin sets are in the form of `(Tx, Sck)` or `(Tx, Rx, Sck)` + /// + /// If you pins are dynamically identified (`Pin`) they will first need to pass + /// validation using their corresponding [`ValidatedPinXX`](ValidatedPinTx). pub fn new(device: D, pins: P) -> Spi { Spi { device,