Mistake on this page?
Report an issue in GitHub or email us
flash_configs.h
1 /* mbed Microcontroller Library
2  * Copyright (c) 2018-2018 ARM Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef MBED_FLASH_CONFIGS_H
18 #define MBED_FLASH_CONFIGS_H
19 
20 #if defined(TARGET_MX25R6435F)
21 #include "MX25RXX35F_config.h"
22 
23 #elif defined(TARGET_DISCO_L476VG)
24 #include "N25Q128A_config.h" // N25Q128A13EF840E
25 /* See STM32L476 Errata Sheet, it is not possible to use Dual-/Quad-mode for the command phase */
26 #undef QSPI_CMD_READ_DPI
27 #undef QSPI_CMD_READ_QPI
28 #undef QSPI_CMD_WRITE_DPI
29 #undef QSPI_CMD_WRITE_QPI
30 
31 #elif defined(TARGET_N25Q128A)
32 #include "N25Q128A_config.h"
33 
34 #elif defined(TARGET_MX25L51245G)
35 #include "MX25L51245G_config.h"
36 
37 #elif defined(TARGET_MX25LM51245G)
38 #include "MX25LM51245G_config.h"
39 
40 #elif defined(TARGET_RHOMBIO_L476DMW1K)
41 #include "MT25Q_config.h" // MT25QL128ABA1EW7
42 /* See STM32L476 Errata Sheet, it is not possible to use Dual-/Quad-mode for the command phase */
43 #undef QSPI_CMD_READ_DPI
44 #undef QSPI_CMD_READ_QPI
45 #undef QSPI_CMD_WRITE_DPI
46 #undef QSPI_CMD_WRITE_QPI
47 
48 #elif defined(TARGET_NRF52840)
49 #include "NORDIC/NRF52840_DK/flash_config.h"
50 
51 #elif defined(TARGET_EFM32GG11_STK3701)
52 #include "SiliconLabs/EFM32GG11_STK3701/flash_config.h"
53 
54 #elif defined(TARGET_K82F)
55 #include "NXP/K82F/flash_config.h"
56 
57 #elif defined(TARGET_KL82Z)
58 #include "NXP/KL82Z/flash_config.h"
59 
60 #elif defined(TARGET_LPC546XX)
61 #include "NXP/LPC546XX/flash_config.h"
62 
63 #elif( defined(TARGET_CY8CKIT_062_BLE) || \
64  defined(TARGET_CY8CKIT_062_WIFI_BT) || \
65  defined(TARGET_CY8CKIT_062S2_43012) || \
66  defined(TARGET_CY8CKIT_062S2_4343W) || \
67  defined(TARGET_CY8CKIT_064S2_4343W) || \
68  defined(TARGET_CY8CPROTO_062_4343W) || \
69  defined(TARGET_CY8CPROTO_062S2_43012) || \
70  defined(TARGET_CY8CPROTO_062S3_4343W) || \
71  defined(TARGET_CYW943012P6EVB_01) || \
72  defined(TARGET_CYW9P62S1_43438EVB_01))
73 #include "S25FL512S_config.h"
74 
75 #elif defined(TARGET_CYW9P62S1_43012EVB_01)
76 #include "S25FS512S_config.h"
77 
78 #elif defined(TARGET_CY8CPROTO_064_SB)
79 #include "S25FL128S_config.h"
80 
81 #endif
82 
83 #endif // MBED_FLASH_CONFIGS_H
84 
Important Information for this Arm website

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies. If you are not happy with the use of these cookies, please review our Cookie Policy to learn how they can be disabled. By disabling cookies, some features of the site will not work.