Skip to content

Commit c21c599

Browse files
committed
Update the QSPI unit test for NXP LPC546XX board
Signed-off-by: Mahesh Mahadevan <[email protected]>
1 parent f8f9faa commit c21c599

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
#ifndef MBED_QSPI_FLASH_CONFIG_H
17+
#define MBED_QSPI_FLASH_CONFIG_H
18+
19+
#include "../../MT25Q_config.h"
20+
21+
#endif // MBED_QSPI_FLASH_CONFIG_H

TESTS/mbed_hal/qspi/flash_configs/flash_configs.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@
2626
#elif defined(TARGET_EFM32GG11_STK3701)
2727
#include "SiliconLabs/EFM32GG11_STK3701/flash_config.h"
2828
#elif defined(TARGET_K82F)
29-
#include "Freescale/K82F/flash_config.h"
29+
#include "NXP/K82F/flash_config.h"
3030
#elif defined(TARGET_KL82Z)
31-
#include "Freescale/KL82Z/flash_config.h"
31+
#include "NXP/KL82Z/flash_config.h"
32+
#elif defined(TARGET_LPC546XX)
33+
#include "NXP/LPC546XX/flash_config.h"
3234
#endif
3335

3436
#endif // MBED_FLASH_CONFIGS_H

0 commit comments

Comments
 (0)