STM32 DISCO : enable QSPI tests when available

pull/9089/head
jeromecoutant 2018-09-04 17:57:54 +02:00
parent 64f8cc472c
commit 0af1ecd305
1 changed files with 12 additions and 2 deletions

View File

@ -18,11 +18,21 @@
#define MBED_FLASH_CONFIGS_H #define MBED_FLASH_CONFIGS_H
#if defined(TARGET_DISCO_L475VG_IOT01A) #if defined(TARGET_DISCO_L475VG_IOT01A)
#include "STM/DISCO_L475VG_IOT01A/flash_config.h" #include "STM/DISCO_L475VG_IOT01A/flash_config.h" // MX25R6435F => MX25RXX35F_config.h
#elif defined(TARGET_NRF52840) #elif defined(TARGET_NRF52840)
#include "NORDIC/NRF52840_DK/flash_config.h" #include "NORDIC/NRF52840_DK/flash_config.h"
#elif defined(TARGET_DISCO_F413ZH) #elif defined(TARGET_DISCO_F413ZH)
#include "STM/DISCO_F413ZH/flash_config.h" #include "STM/DISCO_F413ZH/flash_config.h" // N25Q128A_config.h
#elif defined(TARGET_DISCO_F746NG)
#include "N25Q128A_config.h"
#elif defined(TARGET_DISCO_F469NI)
#include "N25Q128A_config.h"
#elif defined(TARGET_DISCO_F769NI)
#include "MX25RXX35F_config.h" // MX25L51245G
#elif defined(TARGET_DISCO_L476VG)
#include "N25Q128A_config.h"
#elif defined(TARGET_DISCO_L496AG)
#include "MX25RXX35F_config.h" // MX25R6435F
#elif defined(TARGET_EFM32GG11_STK3701) #elif defined(TARGET_EFM32GG11_STK3701)
#include "SiliconLabs/EFM32GG11_STK3701/flash_config.h" #include "SiliconLabs/EFM32GG11_STK3701/flash_config.h"
#elif defined(TARGET_K82F) #elif defined(TARGET_K82F)