STM32F769 : add QSPI definition

pull/9208/head
jeromecoutant 2018-09-26 13:02:20 +02:00 committed by Cruz Monrreal II
parent da806bd59f
commit c0ad4621e0
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