mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #15239 from pilotak/master
STM32G4: enable QSPI for custom boardspull/15249/head
commit
c37cd51abc
|
@ -155,6 +155,19 @@ struct trng_s {
|
|||
RNG_HandleTypeDef handle;
|
||||
};
|
||||
|
||||
#if DEVICE_QSPI
|
||||
struct qspi_s {
|
||||
QSPI_HandleTypeDef handle;
|
||||
QSPIName qspi;
|
||||
PinName io0;
|
||||
PinName io1;
|
||||
PinName io2;
|
||||
PinName io3;
|
||||
PinName sclk;
|
||||
PinName ssel;
|
||||
};
|
||||
#endif
|
||||
|
||||
//#include "common_objects.h"
|
||||
#include "gpio_object.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue