arduino 101: Exposes spi 1 in pinmux
Exposes the SPI 1 pins by default in the pinmux only if the SPI 1 device is enabled in the Arduino 101 board. Change-Id: I9a8ad0942bb1de7130013931e86144139f78c90e Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@intel.com>
This commit is contained in:
parent
d25d62a0e9
commit
76eaf42888
|
@ -140,6 +140,12 @@ static void _pinmux_defaults(uint32_t base)
|
|||
PIN_CONFIG(mux_config, 17, PINMUX_FUNC_C);
|
||||
PIN_CONFIG(mux_config, 40, PINMUX_FUNC_B);
|
||||
PIN_CONFIG(mux_config, 41, PINMUX_FUNC_B);
|
||||
#ifdef CONFIG_SPI_1
|
||||
PIN_CONFIG(mux_config, 42, PINMUX_FUNC_B);
|
||||
PIN_CONFIG(mux_config, 43, PINMUX_FUNC_B);
|
||||
PIN_CONFIG(mux_config, 44, PINMUX_FUNC_B);
|
||||
PIN_CONFIG(mux_config, 45, PINMUX_FUNC_B);
|
||||
#endif
|
||||
PIN_CONFIG(mux_config, 55, PINMUX_FUNC_B);
|
||||
PIN_CONFIG(mux_config, 56, PINMUX_FUNC_B);
|
||||
PIN_CONFIG(mux_config, 57, PINMUX_FUNC_B);
|
||||
|
|
Loading…
Reference in a new issue