mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-15 20:01:56 +00:00
Add a SPI master and slave driver for the L4, F4 and F3 STM32 SoCs families. Change-Id: I1faf5c97f992c91eba852fd126e7d3b83158993d Origin: Original Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Tested-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> Tested-by: Lee Jones <lee.jones@linaro.org>
13 lines
220 B
C
13 lines
220 B
C
/*
|
|
* Copyright (c) 2016 BayLibre, SAS
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _DRIVERS_STM32_SPI_H_
|
|
#define _DRIVERS_STM32_SPI_H_
|
|
|
|
#define STM32_SPI_NSS_IGNORE BIT(0)
|
|
|
|
#endif /* _DRIVERS_STM32_SPI_H_ */
|