STM32F769 : add QSPI definition

pull/9089/head
jeromecoutant 2018-09-26 13:02:20 +02:00
parent 0af1ecd305
commit 4a6bc96345
1 changed files with 10 additions and 0 deletions

View File

@ -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