Skip to content

Commit d72d699

Browse files
robert-hhdpgeorge
authored andcommitted
mimxrt/boards: Add the Seeed ARCH MIX board.
The ARCH MIX board exposes the Ethernet Pins at it's connectors. Therefore the software is configured for using a LAN8720 PHY device. Breakout boards with the LAN8720 are easily available.
1 parent c3dceb1 commit d72d699

File tree

8 files changed

+757
-0
lines changed

8 files changed

+757
-0
lines changed
Lines changed: 258 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,258 @@
1+
/*
2+
* Copyright 2019 NXP.
3+
* All rights reserved.
4+
*
5+
* SPDX-License-Identifier: BSD-3-Clause
6+
*/
7+
8+
// Based on tinyusb/hw/bsp/teensy_40/evkmimxrt1020_flexspi_nor_config.h
9+
10+
#ifndef __SEEED_ARCH_MIX_FLEXSPI_NOR_CONFIG__
11+
#define __SEEED_ARCH_MIX_FLEXSPI_NOR_CONFIG__
12+
13+
#include <stdint.h>
14+
#include <stdbool.h>
15+
#include "fsl_common.h"
16+
17+
/*! @name Driver version */
18+
/*@{*/
19+
/*! @brief XIP_BOARD driver version 2.0.0. */
20+
#define FSL_XIP_BOARD_DRIVER_VERSION (MAKE_VERSION(2, 0, 0))
21+
/*@}*/
22+
23+
/* FLEXSPI memory config block related defintions */
24+
#define FLEXSPI_CFG_BLK_TAG (0x42464346UL) // ascii "FCFB" Big Endian
25+
#define FLEXSPI_CFG_BLK_VERSION (0x56010400UL) // V1.4.0
26+
#define FLEXSPI_CFG_BLK_SIZE (512)
27+
28+
/* FLEXSPI Feature related definitions */
29+
#define FLEXSPI_FEATURE_HAS_PARALLEL_MODE 1
30+
31+
/* Lookup table related defintions */
32+
#define CMD_INDEX_READ 0
33+
#define CMD_INDEX_READSTATUS 1
34+
#define CMD_INDEX_WRITEENABLE 2
35+
#define CMD_INDEX_WRITE 4
36+
37+
#define CMD_LUT_SEQ_IDX_READ 0
38+
#define CMD_LUT_SEQ_IDX_READSTATUS 1
39+
#define CMD_LUT_SEQ_IDX_WRITEENABLE 3
40+
#define CMD_LUT_SEQ_IDX_WRITE 9
41+
42+
#define CMD_SDR 0x01
43+
#define CMD_DDR 0x21
44+
#define RADDR_SDR 0x02
45+
#define RADDR_DDR 0x22
46+
#define CADDR_SDR 0x03
47+
#define CADDR_DDR 0x23
48+
#define MODE1_SDR 0x04
49+
#define MODE1_DDR 0x24
50+
#define MODE2_SDR 0x05
51+
#define MODE2_DDR 0x25
52+
#define MODE4_SDR 0x06
53+
#define MODE4_DDR 0x26
54+
#define MODE8_SDR 0x07
55+
#define MODE8_DDR 0x27
56+
#define WRITE_SDR 0x08
57+
#define WRITE_DDR 0x28
58+
#define READ_SDR 0x09
59+
#define READ_DDR 0x29
60+
#define LEARN_SDR 0x0A
61+
#define LEARN_DDR 0x2A
62+
#define DATSZ_SDR 0x0B
63+
#define DATSZ_DDR 0x2B
64+
#define DUMMY_SDR 0x0C
65+
#define DUMMY_DDR 0x2C
66+
#define DUMMY_RWDS_SDR 0x0D
67+
#define DUMMY_RWDS_DDR 0x2D
68+
#define JMP_ON_CS 0x1F
69+
#define STOP 0
70+
71+
#define FLEXSPI_1PAD 0
72+
#define FLEXSPI_2PAD 1
73+
#define FLEXSPI_4PAD 2
74+
#define FLEXSPI_8PAD 3
75+
76+
#define FLEXSPI_LUT_SEQ(cmd0, pad0, op0, cmd1, pad1, op1) \
77+
(FLEXSPI_LUT_OPERAND0(op0) | FLEXSPI_LUT_NUM_PADS0(pad0) | FLEXSPI_LUT_OPCODE0(cmd0) | FLEXSPI_LUT_OPERAND1(op1) | \
78+
FLEXSPI_LUT_NUM_PADS1(pad1) | FLEXSPI_LUT_OPCODE1(cmd1))
79+
80+
// !@brief Definitions for FlexSPI Serial Clock Frequency
81+
typedef enum _FlexSpiSerialClockFreq
82+
{
83+
kFlexSpiSerialClk_30MHz = 1,
84+
kFlexSpiSerialClk_50MHz = 2,
85+
kFlexSpiSerialClk_60MHz = 3,
86+
kFlexSpiSerialClk_75MHz = 4,
87+
kFlexSpiSerialClk_80MHz = 5,
88+
kFlexSpiSerialClk_100MHz = 6,
89+
kFlexSpiSerialClk_133MHz = 7,
90+
kFlexSpiSerialClk_166MHz = 8,
91+
kFlexSpiSerialClk_200MHz = 9,
92+
} flexspi_serial_clk_freq_t;
93+
94+
// !@brief FlexSPI clock configuration type
95+
enum
96+
{
97+
kFlexSpiClk_SDR, // !< Clock configure for SDR mode
98+
kFlexSpiClk_DDR, // !< Clock configurat for DDR mode
99+
};
100+
101+
// !@brief FlexSPI Read Sample Clock Source definition
102+
typedef enum _FlashReadSampleClkSource
103+
{
104+
kFlexSPIReadSampleClk_LoopbackInternally = 0,
105+
kFlexSPIReadSampleClk_LoopbackFromDqsPad = 1,
106+
kFlexSPIReadSampleClk_LoopbackFromSckPad = 2,
107+
kFlexSPIReadSampleClk_ExternalInputFromDqsPad = 3,
108+
} flexspi_read_sample_clk_t;
109+
110+
// !@brief Misc feature bit definitions
111+
enum
112+
{
113+
kFlexSpiMiscOffset_DiffClkEnable = 0, // !< Bit for Differential clock enable
114+
kFlexSpiMiscOffset_Ck2Enable = 1, // !< Bit for CK2 enable
115+
kFlexSpiMiscOffset_ParallelEnable = 2, // !< Bit for Parallel mode enable
116+
kFlexSpiMiscOffset_WordAddressableEnable = 3, // !< Bit for Word Addressable enable
117+
kFlexSpiMiscOffset_SafeConfigFreqEnable = 4, // !< Bit for Safe Configuration Frequency enable
118+
kFlexSpiMiscOffset_PadSettingOverrideEnable = 5, // !< Bit for Pad setting override enable
119+
kFlexSpiMiscOffset_DdrModeEnable = 6, // !< Bit for DDR clock confiuration indication.
120+
};
121+
122+
// !@brief Flash Type Definition
123+
enum
124+
{
125+
kFlexSpiDeviceType_SerialNOR = 1, // !< Flash devices are Serial NOR
126+
kFlexSpiDeviceType_SerialNAND = 2, // !< Flash devices are Serial NAND
127+
kFlexSpiDeviceType_SerialRAM = 3, // !< Flash devices are Serial RAM/HyperFLASH
128+
kFlexSpiDeviceType_MCP_NOR_NAND = 0x12, // !< Flash device is MCP device, A1 is Serial NOR, A2 is Serial NAND
129+
kFlexSpiDeviceType_MCP_NOR_RAM = 0x13, // !< Flash deivce is MCP device, A1 is Serial NOR, A2 is Serial RAMs
130+
};
131+
132+
// !@brief Flash Pad Definitions
133+
enum
134+
{
135+
kSerialFlash_1Pad = 1,
136+
kSerialFlash_2Pads = 2,
137+
kSerialFlash_4Pads = 4,
138+
kSerialFlash_8Pads = 8,
139+
};
140+
141+
// !@brief FlexSPI LUT Sequence structure
142+
typedef struct _lut_sequence
143+
{
144+
uint8_t seqNum; // !< Sequence Number, valid number: 1-16
145+
uint8_t seqId; // !< Sequence Index, valid number: 0-15
146+
uint16_t reserved;
147+
} flexspi_lut_seq_t;
148+
149+
// !@brief Flash Configuration Command Type
150+
enum
151+
{
152+
kDeviceConfigCmdType_Generic, // !< Generic command, for example: configure dummy cycles, drive strength, etc
153+
kDeviceConfigCmdType_QuadEnable, // !< Quad Enable command
154+
kDeviceConfigCmdType_Spi2Xpi, // !< Switch from SPI to DPI/QPI/OPI mode
155+
kDeviceConfigCmdType_Xpi2Spi, // !< Switch from DPI/QPI/OPI to SPI mode
156+
kDeviceConfigCmdType_Spi2NoCmd, // !< Switch to 0-4-4/0-8-8 mode
157+
kDeviceConfigCmdType_Reset, // !< Reset device command
158+
};
159+
160+
// !@brief FlexSPI Memory Configuration Block
161+
typedef struct _FlexSPIConfig
162+
{
163+
uint32_t tag; // !< [0x000-0x003] Tag, fixed value 0x42464346UL
164+
uint32_t version; // !< [0x004-0x007] Version,[31:24] -'V', [23:16] - Major, [15:8] - Minor, [7:0] - bugfix
165+
uint32_t reserved0; // !< [0x008-0x00b] Reserved for future use
166+
uint8_t readSampleClkSrc; // !< [0x00c-0x00c] Read Sample Clock Source, valid value: 0/1/3
167+
uint8_t csHoldTime; // !< [0x00d-0x00d] CS hold time, default value: 3
168+
uint8_t csSetupTime; // !< [0x00e-0x00e] CS setup time, default value: 3
169+
uint8_t columnAddressWidth; // !< [0x00f-0x00f] Column Address with, for HyperBus protocol, it is fixed to 3, For
170+
// ! Serial NAND, need to refer to datasheet
171+
uint8_t deviceModeCfgEnable; // !< [0x010-0x010] Device Mode Configure enable flag, 1 - Enable, 0 - Disable
172+
uint8_t deviceModeType; // !< [0x011-0x011] Specify the configuration command type:Quad Enable, DPI/QPI/OPI switch,
173+
// ! Generic configuration, etc.
174+
uint16_t waitTimeCfgCommands; // !< [0x012-0x013] Wait time for all configuration commands, unit: 100us, Used for
175+
// ! DPI/QPI/OPI switch or reset command
176+
flexspi_lut_seq_t deviceModeSeq; // !< [0x014-0x017] Device mode sequence info, [7:0] - LUT sequence id, [15:8] - LUt
177+
// ! sequence number, [31:16] Reserved
178+
uint32_t deviceModeArg; // !< [0x018-0x01b] Argument/Parameter for device configuration
179+
uint8_t configCmdEnable; // !< [0x01c-0x01c] Configure command Enable Flag, 1 - Enable, 0 - Disable
180+
uint8_t configModeType[3]; // !< [0x01d-0x01f] Configure Mode Type, similar as deviceModeTpe
181+
flexspi_lut_seq_t
182+
configCmdSeqs[3]; // !< [0x020-0x02b] Sequence info for Device Configuration command, similar as deviceModeSeq
183+
uint32_t reserved1; // !< [0x02c-0x02f] Reserved for future use
184+
uint32_t configCmdArgs[3]; // !< [0x030-0x03b] Arguments/Parameters for device Configuration commands
185+
uint32_t reserved2; // !< [0x03c-0x03f] Reserved for future use
186+
uint32_t controllerMiscOption; // !< [0x040-0x043] Controller Misc Options, see Misc feature bit definitions for more
187+
// ! details
188+
uint8_t deviceType; // !< [0x044-0x044] Device Type: See Flash Type Definition for more details
189+
uint8_t sflashPadType; // !< [0x045-0x045] Serial Flash Pad Type: 1 - Single, 2 - Dual, 4 - Quad, 8 - Octal
190+
uint8_t serialClkFreq; // !< [0x046-0x046] Serial Flash Frequencey, device specific definitions, See System Boot
191+
// ! Chapter for more details
192+
uint8_t lutCustomSeqEnable; // !< [0x047-0x047] LUT customization Enable, it is required if the program/erase cannot
193+
// ! be done using 1 LUT sequence, currently, only applicable to HyperFLASH
194+
uint32_t reserved3[2]; // !< [0x048-0x04f] Reserved for future use
195+
uint32_t sflashA1Size; // !< [0x050-0x053] Size of Flash connected to A1
196+
uint32_t sflashA2Size; // !< [0x054-0x057] Size of Flash connected to A2
197+
uint32_t sflashB1Size; // !< [0x058-0x05b] Size of Flash connected to B1
198+
uint32_t sflashB2Size; // !< [0x05c-0x05f] Size of Flash connected to B2
199+
uint32_t csPadSettingOverride; // !< [0x060-0x063] CS pad setting override value
200+
uint32_t sclkPadSettingOverride; // !< [0x064-0x067] SCK pad setting override value
201+
uint32_t dataPadSettingOverride; // !< [0x068-0x06b] data pad setting override value
202+
uint32_t dqsPadSettingOverride; // !< [0x06c-0x06f] DQS pad setting override value
203+
uint32_t timeoutInMs; // !< [0x070-0x073] Timeout threshold for read status command
204+
uint32_t commandInterval; // !< [0x074-0x077] CS deselect interval between two commands
205+
uint16_t dataValidTime[2]; // !< [0x078-0x07b] CLK edge to data valid time for PORT A and PORT B, in terms of 0.1ns
206+
uint16_t busyOffset; // !< [0x07c-0x07d] Busy offset, valid value: 0-31
207+
uint16_t busyBitPolarity; // !< [0x07e-0x07f] Busy flag polarity, 0 - busy flag is 1 when flash device is busy, 1 -
208+
// ! busy flag is 0 when flash device is busy
209+
uint32_t lookupTable[64]; // !< [0x080-0x17f] Lookup table holds Flash command sequences
210+
flexspi_lut_seq_t lutCustomSeq[12]; // !< [0x180-0x1af] Customizable LUT Sequences
211+
uint32_t reserved4[4]; // !< [0x1b0-0x1bf] Reserved for future use
212+
} flexspi_mem_config_t;
213+
214+
/* */
215+
#define NOR_CMD_LUT_SEQ_IDX_READ_NORMAL 0
216+
#define NOR_CMD_LUT_SEQ_IDX_READSTATUSREG 1
217+
#define NOR_CMD_LUT_SEQ_IDX_READ_FAST_QUAD 2
218+
#define NOR_CMD_LUT_SEQ_IDX_WRITEENABLE 3
219+
#define NOR_CMD_LUT_SEQ_IDX_READSTATUS_XPI 4
220+
#define NOR_CMD_LUT_SEQ_IDX_ERASESECTOR 5
221+
#define NOR_CMD_LUT_SEQ_IDX_WRITESTATUSREG 6
222+
#define NOR_CMD_LUT_SEQ_IDX_PAGEPROGRAM_QUAD 7
223+
#define NOR_CMD_LUT_SEQ_IDX_READID 8
224+
#define NOR_CMD_LUT_SEQ_IDX_PAGEPROGRAM 9
225+
#define NOR_CMD_LUT_SEQ_IDX_ENTERQPI 10
226+
#define NOR_CMD_LUT_SEQ_IDX_CHIPERASE 11
227+
#define NOR_CMD_LUT_SEQ_IDX_EXITQPI 12
228+
229+
/*
230+
* Serial NOR configuration block
231+
*/
232+
typedef struct _flexspi_nor_config
233+
{
234+
flexspi_mem_config_t memConfig; // !< Common memory configuration info via FlexSPI
235+
uint32_t pageSize; // !< Page size of Serial NOR
236+
uint32_t sectorSize; // !< Sector size of Serial NOR
237+
uint8_t ipcmdSerialClkFreq; // !< Clock frequency for IP command
238+
uint8_t isUniformBlockSize; // !< Sector/Block size is the same
239+
uint8_t reserved0[2]; // !< Reserved for future use
240+
uint8_t serialNorType; // !< Serial NOR Flash type: 0/1/2/3
241+
uint8_t needExitNoCmdMode; // !< Need to exit NoCmd mode before other IP command
242+
uint8_t halfClkForNonReadCmd; // !< Half the Serial Clock for non-read command: true/false
243+
uint8_t needRestoreNoCmdMode; // !< Need to Restore NoCmd mode after IP commmand execution
244+
uint32_t blockSize; // !< Block size
245+
uint32_t reserve2[11]; // !< Reserved for future use
246+
} flexspi_nor_config_t;
247+
248+
#define FLASH_BUSY_STATUS_POL 0
249+
#define FLASH_BUSY_STATUS_OFFSET 0
250+
251+
#ifdef __cplusplus
252+
extern "C" {
253+
#endif
254+
255+
#ifdef __cplusplus
256+
}
257+
#endif
258+
#endif /* __SEEED_ARCH_MIX_FLEXSPI_NOR_CONFIG__ */
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"deploy": [
3+
"deploy.md"
4+
],
5+
"docs": "",
6+
"features": [
7+
"MicroSD",
8+
"MicroUSB",
9+
"SDRAM",
10+
"RGB LED"
11+
],
12+
"images": [
13+
"main1.jpg"
14+
],
15+
"mcu": "mimxrt",
16+
"product": "Arch Mix",
17+
"thumbnail": "",
18+
"url": "https://wiki.seeedstudio.com/Arch_Mix/",
19+
"vendor": "Seeed Technology Co.,Ltd."
20+
}
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
/*
2+
* Copyright 2017-2019 NXP
3+
* All rights reserved.
4+
*
5+
* SPDX-License-Identifier: BSD-3-Clause
6+
*/
7+
8+
#ifndef _CLOCK_CONFIG_H_
9+
#define _CLOCK_CONFIG_H_
10+
11+
#include "fsl_common.h"
12+
13+
/*******************************************************************************
14+
* Definitions
15+
******************************************************************************/
16+
#define BOARD_XTAL0_CLK_HZ 24000000U /*!< Board xtal0 frequency in Hz */
17+
18+
#define BOARD_XTAL32K_CLK_HZ 32768U /*!< Board xtal32k frequency in Hz */
19+
/*******************************************************************************
20+
************************ BOARD_InitBootClocks function ************************
21+
******************************************************************************/
22+
23+
#if defined(__cplusplus)
24+
extern "C" {
25+
#endif /* __cplusplus*/
26+
27+
/*!
28+
* @brief This function executes default configuration of clocks.
29+
*
30+
*/
31+
void BOARD_InitBootClocks(void);
32+
33+
#if defined(__cplusplus)
34+
}
35+
#endif /* __cplusplus*/
36+
37+
/*******************************************************************************
38+
********************** Configuration BOARD_BootClockRUN ***********************
39+
******************************************************************************/
40+
/*******************************************************************************
41+
* Definitions for BOARD_BootClockRUN configuration
42+
******************************************************************************/
43+
#define BOARD_BOOTCLOCKRUN_CORE_CLOCK 600000000U /*!< Core clock frequency: 600000000Hz */
44+
45+
/* Clock outputs (values are in Hz): */
46+
#define BOARD_BOOTCLOCKRUN_AHB_CLK_ROOT 600000000UL
47+
#define BOARD_BOOTCLOCKRUN_CAN_CLK_ROOT 40000000UL
48+
#define BOARD_BOOTCLOCKRUN_CKIL_SYNC_CLK_ROOT 32768UL
49+
#define BOARD_BOOTCLOCKRUN_CLKO1_CLK 0UL
50+
#define BOARD_BOOTCLOCKRUN_CLKO2_CLK 0UL
51+
#define BOARD_BOOTCLOCKRUN_CLK_1M 1000000UL
52+
#define BOARD_BOOTCLOCKRUN_CLK_24M 24000000UL
53+
#define BOARD_BOOTCLOCKRUN_CSI_CLK_ROOT 12000000UL
54+
#define BOARD_BOOTCLOCKRUN_ENET1_TX_CLK 2400000UL
55+
#define BOARD_BOOTCLOCKRUN_ENET_125M_CLK 2400000UL
56+
#define BOARD_BOOTCLOCKRUN_ENET_25M_REF_CLK 1200000UL
57+
#define BOARD_BOOTCLOCKRUN_FLEXIO1_CLK_ROOT 30000000UL
58+
#define BOARD_BOOTCLOCKRUN_FLEXIO2_CLK_ROOT 30000000UL
59+
#define BOARD_BOOTCLOCKRUN_FLEXSPI_CLK_ROOT 160000000UL
60+
#define BOARD_BOOTCLOCKRUN_GPT1_IPG_CLK_HIGHFREQ 75000000UL
61+
#define BOARD_BOOTCLOCKRUN_GPT2_IPG_CLK_HIGHFREQ 75000000UL
62+
#define BOARD_BOOTCLOCKRUN_IPG_CLK_ROOT 150000000UL
63+
#define BOARD_BOOTCLOCKRUN_LCDIF_CLK_ROOT 9642857UL
64+
#define BOARD_BOOTCLOCKRUN_LPI2C_CLK_ROOT 60000000UL
65+
#define BOARD_BOOTCLOCKRUN_LPSPI_CLK_ROOT 105600000UL
66+
#define BOARD_BOOTCLOCKRUN_LVDS1_CLK 1200000000UL
67+
#define BOARD_BOOTCLOCKRUN_MQS_MCLK 63529411UL
68+
#define BOARD_BOOTCLOCKRUN_PERCLK_CLK_ROOT 75000000UL
69+
#define BOARD_BOOTCLOCKRUN_PLL7_MAIN_CLK 24000000UL
70+
#define BOARD_BOOTCLOCKRUN_SAI1_CLK_ROOT 63529411UL
71+
#define BOARD_BOOTCLOCKRUN_SAI1_MCLK1 63529411UL
72+
#define BOARD_BOOTCLOCKRUN_SAI1_MCLK2 63529411UL
73+
#define BOARD_BOOTCLOCKRUN_SAI1_MCLK3 30000000UL
74+
#define BOARD_BOOTCLOCKRUN_SAI2_CLK_ROOT 63529411UL
75+
#define BOARD_BOOTCLOCKRUN_SAI2_MCLK1 63529411UL
76+
#define BOARD_BOOTCLOCKRUN_SAI2_MCLK2 0UL
77+
#define BOARD_BOOTCLOCKRUN_SAI2_MCLK3 30000000UL
78+
#define BOARD_BOOTCLOCKRUN_SAI3_CLK_ROOT 63529411UL
79+
#define BOARD_BOOTCLOCKRUN_SAI3_MCLK1 63529411UL
80+
#define BOARD_BOOTCLOCKRUN_SAI3_MCLK2 0UL
81+
#define BOARD_BOOTCLOCKRUN_SAI3_MCLK3 30000000UL
82+
#define BOARD_BOOTCLOCKRUN_SEMC_CLK_ROOT 75000000UL
83+
#define BOARD_BOOTCLOCKRUN_SPDIF0_CLK_ROOT 30000000UL
84+
#define BOARD_BOOTCLOCKRUN_SPDIF0_EXTCLK_OUT 0UL
85+
#define BOARD_BOOTCLOCKRUN_TRACE_CLK_ROOT 117333333UL
86+
#define BOARD_BOOTCLOCKRUN_UART_CLK_ROOT 80000000UL
87+
#define BOARD_BOOTCLOCKRUN_USBPHY1_CLK 0UL
88+
#define BOARD_BOOTCLOCKRUN_USBPHY2_CLK 0UL
89+
#define BOARD_BOOTCLOCKRUN_USDHC1_CLK_ROOT 198000000UL
90+
#define BOARD_BOOTCLOCKRUN_USDHC2_CLK_ROOT 198000000UL
91+
92+
/*! @brief Arm PLL set for BOARD_BootClockRUN configuration.
93+
*/
94+
extern const clock_arm_pll_config_t armPllConfig_BOARD_BootClockRUN;
95+
/*! @brief Usb1 PLL set for BOARD_BootClockRUN configuration.
96+
*/
97+
extern const clock_usb_pll_config_t usb1PllConfig_BOARD_BootClockRUN;
98+
/*! @brief Sys PLL for BOARD_BootClockRUN configuration.
99+
*/
100+
extern const clock_sys_pll_config_t sysPllConfig_BOARD_BootClockRUN;
101+
102+
/*******************************************************************************
103+
* API for BOARD_BootClockRUN configuration
104+
******************************************************************************/
105+
#if defined(__cplusplus)
106+
extern "C" {
107+
#endif /* __cplusplus*/
108+
109+
/*!
110+
* @brief This function executes configuration of clocks.
111+
*
112+
*/
113+
void BOARD_BootClockRUN(void);
114+
115+
#if defined(__cplusplus)
116+
}
117+
#endif /* __cplusplus*/
118+
119+
#endif /* _CLOCK_CONFIG_H_ */

0 commit comments

Comments
 (0)