Merge pull request #15239 from pilotak/master

STM32G4: enable QSPI for custom boards
pull/15249/head
Martin Kojtal 2022-03-03 12:10:55 +01:00 committed by GitHub
commit c37cd51abc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

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