From 4a6bc96345b0eedfe64f569da8b92fa30b5d56fd Mon Sep 17 00:00:00 2001 From: jeromecoutant Date: Wed, 26 Sep 2018 13:02:20 +0200 Subject: [PATCH] STM32F769 : add QSPI definition --- .../TARGET_STM32F7/TARGET_STM32F769xI/objects.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/targets/TARGET_STM/TARGET_STM32F7/TARGET_STM32F769xI/objects.h b/targets/TARGET_STM/TARGET_STM32F7/TARGET_STM32F769xI/objects.h index 2894691118..2e538dcf5b 100644 --- a/targets/TARGET_STM/TARGET_STM32F7/TARGET_STM32F769xI/objects.h +++ b/targets/TARGET_STM/TARGET_STM32F7/TARGET_STM32F769xI/objects.h @@ -58,6 +58,16 @@ struct trng_s { RNG_HandleTypeDef handle; }; +struct qspi_s { + QSPI_HandleTypeDef handle; + PinName io0; + PinName io1; + PinName io2; + PinName io3; + PinName sclk; + PinName ssel; +}; + #include "common_objects.h" #ifdef __cplusplus