mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Committer:
mbed_official
Date:
Thu Apr 03 11:45:06 2014 +0100
Revision:
149:1fb5f62b92bd
Parent:
targets/hal/TARGET_Freescale/TARGET_KSDK_MCUS/TARGET_KSDK_CODE/drivers/clock/fsl_clock_manager.h@146:f64d43ff0c18
Child:
324:406fd2029f23
Synchronized with git revision 220c0bb39ceee40016e1e86350c058963d01ed42

Full URL: https://github.com/mbedmicro/mbed/commit/220c0bb39ceee40016e1e86350c058963d01ed42/

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 146:f64d43ff0c18 1 /*
mbed_official 146:f64d43ff0c18 2 * Copyright (c) 2013 - 2014, Freescale Semiconductor, Inc.
mbed_official 146:f64d43ff0c18 3 * All rights reserved.
mbed_official 146:f64d43ff0c18 4 *
mbed_official 146:f64d43ff0c18 5 * Redistribution and use in source and binary forms, with or without modification,
mbed_official 146:f64d43ff0c18 6 * are permitted provided that the following conditions are met:
mbed_official 146:f64d43ff0c18 7 *
mbed_official 146:f64d43ff0c18 8 * o Redistributions of source code must retain the above copyright notice, this list
mbed_official 146:f64d43ff0c18 9 * of conditions and the following disclaimer.
mbed_official 146:f64d43ff0c18 10 *
mbed_official 146:f64d43ff0c18 11 * o Redistributions in binary form must reproduce the above copyright notice, this
mbed_official 146:f64d43ff0c18 12 * list of conditions and the following disclaimer in the documentation and/or
mbed_official 146:f64d43ff0c18 13 * other materials provided with the distribution.
mbed_official 146:f64d43ff0c18 14 *
mbed_official 146:f64d43ff0c18 15 * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
mbed_official 146:f64d43ff0c18 16 * contributors may be used to endorse or promote products derived from this
mbed_official 146:f64d43ff0c18 17 * software without specific prior written permission.
mbed_official 146:f64d43ff0c18 18 *
mbed_official 146:f64d43ff0c18 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
mbed_official 146:f64d43ff0c18 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
mbed_official 146:f64d43ff0c18 21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 146:f64d43ff0c18 22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
mbed_official 146:f64d43ff0c18 23 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
mbed_official 146:f64d43ff0c18 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
mbed_official 146:f64d43ff0c18 25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
mbed_official 146:f64d43ff0c18 26 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
mbed_official 146:f64d43ff0c18 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
mbed_official 146:f64d43ff0c18 28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 146:f64d43ff0c18 29 */
mbed_official 146:f64d43ff0c18 30
mbed_official 146:f64d43ff0c18 31 #if !defined(__FSL_CLOCK_MANAGER_H__)
mbed_official 146:f64d43ff0c18 32 #define __FSL_CLOCK_MANAGER_H__
mbed_official 146:f64d43ff0c18 33
mbed_official 146:f64d43ff0c18 34 #include <stdint.h>
mbed_official 146:f64d43ff0c18 35 #include <stdbool.h>
mbed_official 146:f64d43ff0c18 36 #include <assert.h>
mbed_official 146:f64d43ff0c18 37
mbed_official 146:f64d43ff0c18 38 /*! @addtogroup clock_manager*/
mbed_official 146:f64d43ff0c18 39 /*! @{*/
mbed_official 146:f64d43ff0c18 40
mbed_official 146:f64d43ff0c18 41 /*! @file*/
mbed_official 146:f64d43ff0c18 42
mbed_official 146:f64d43ff0c18 43 /*******************************************************************************
mbed_official 146:f64d43ff0c18 44 * Definitions
mbed_official 146:f64d43ff0c18 45 ******************************************************************************/
mbed_official 146:f64d43ff0c18 46
mbed_official 146:f64d43ff0c18 47 /*! @brief Clock names */
mbed_official 146:f64d43ff0c18 48 typedef enum _clock_names {
mbed_official 146:f64d43ff0c18 49
mbed_official 146:f64d43ff0c18 50 /* default system clocks*/
mbed_official 146:f64d43ff0c18 51 kCoreClock, /**/
mbed_official 146:f64d43ff0c18 52 kSystemClock, /**/
mbed_official 146:f64d43ff0c18 53 kPlatformClock, /**/
mbed_official 146:f64d43ff0c18 54 kBusClock, /**/
mbed_official 146:f64d43ff0c18 55 kFlexBusClock, /**/
mbed_official 146:f64d43ff0c18 56 kFlashClock, /**/
mbed_official 146:f64d43ff0c18 57
mbed_official 146:f64d43ff0c18 58 /* other internal clocks used by peripherals*/
mbed_official 146:f64d43ff0c18 59
mbed_official 146:f64d43ff0c18 60 /* osc clock*/
mbed_official 146:f64d43ff0c18 61 kOsc32kClock,
mbed_official 146:f64d43ff0c18 62 kOsc0ErClock,
mbed_official 146:f64d43ff0c18 63 kOsc1ErClock,
mbed_official 146:f64d43ff0c18 64
mbed_official 146:f64d43ff0c18 65 /* irc 48Mhz clock */
mbed_official 146:f64d43ff0c18 66 kIrc48mClock,
mbed_official 146:f64d43ff0c18 67
mbed_official 146:f64d43ff0c18 68 /* rtc clock*/
mbed_official 146:f64d43ff0c18 69 kRtc32kClock,
mbed_official 146:f64d43ff0c18 70 kRtc1hzClock,
mbed_official 146:f64d43ff0c18 71
mbed_official 146:f64d43ff0c18 72 /* lpo clcok*/
mbed_official 146:f64d43ff0c18 73 kLpoClock,
mbed_official 146:f64d43ff0c18 74
mbed_official 146:f64d43ff0c18 75 /* mcg clocks*/
mbed_official 146:f64d43ff0c18 76 kMcgFllClock,
mbed_official 146:f64d43ff0c18 77 kMcgPll0Clock,
mbed_official 146:f64d43ff0c18 78 kMcgPll1Clock,
mbed_official 146:f64d43ff0c18 79 kMcgOutClock,
mbed_official 146:f64d43ff0c18 80 kMcgIrClock,
mbed_official 146:f64d43ff0c18 81
mbed_official 146:f64d43ff0c18 82 /* constant clocks (provided in other header files?)*/
mbed_official 146:f64d43ff0c18 83 kSDHC0_CLKIN,
mbed_official 146:f64d43ff0c18 84 kENET_1588_CLKIN,
mbed_official 146:f64d43ff0c18 85 kEXTAL_Clock,
mbed_official 146:f64d43ff0c18 86 kEXTAL1_Clock,
mbed_official 146:f64d43ff0c18 87 kUSB_CLKIN,
mbed_official 146:f64d43ff0c18 88
mbed_official 146:f64d43ff0c18 89 /* reserved value*/
mbed_official 146:f64d43ff0c18 90 kReserved,
mbed_official 146:f64d43ff0c18 91
mbed_official 146:f64d43ff0c18 92 /* clock name max */
mbed_official 146:f64d43ff0c18 93 kClockNameCount
mbed_official 146:f64d43ff0c18 94
mbed_official 146:f64d43ff0c18 95 } clock_names_t;
mbed_official 146:f64d43ff0c18 96
mbed_official 146:f64d43ff0c18 97 /*! @brief Clock gate module names */
mbed_official 146:f64d43ff0c18 98 typedef enum _clock_gate_module_names {
mbed_official 146:f64d43ff0c18 99
mbed_official 146:f64d43ff0c18 100 /* System modules*/
mbed_official 146:f64d43ff0c18 101 kClockModuleDMA, /**/
mbed_official 146:f64d43ff0c18 102 kClockModuleDMAMUX, /* instance 0, 1*/
mbed_official 146:f64d43ff0c18 103 kClockModulePORT, /* instance 0 - 5 (A - F)*/
mbed_official 146:f64d43ff0c18 104 kClockModuleMPU, /**/
mbed_official 146:f64d43ff0c18 105 kClockModuleLLWU, /**/
mbed_official 146:f64d43ff0c18 106 kClockModuleEWM, /**/
mbed_official 146:f64d43ff0c18 107
mbed_official 146:f64d43ff0c18 108 /* Clocks*/
mbed_official 146:f64d43ff0c18 109 kClockModuleOSC1, /**/
mbed_official 146:f64d43ff0c18 110
mbed_official 146:f64d43ff0c18 111 /* Memory and memory interfaces*/
mbed_official 146:f64d43ff0c18 112 kClockModuleFTF, /* Flash memory control clock*/
mbed_official 146:f64d43ff0c18 113 kClockModuleNFC, /* NAND flash control clock*/
mbed_official 146:f64d43ff0c18 114 kClockModuleFLEXBUS, /**/
mbed_official 146:f64d43ff0c18 115 kClockModuleDDR, /**/
mbed_official 146:f64d43ff0c18 116
mbed_official 146:f64d43ff0c18 117 /* Security*/
mbed_official 146:f64d43ff0c18 118 kClockModuleCRC, /**/
mbed_official 146:f64d43ff0c18 119 kClockModuleRNGA, /**/
mbed_official 146:f64d43ff0c18 120 kClockModuleREGFILE, /**/
mbed_official 146:f64d43ff0c18 121 kClockModuleDRYICESECREG, /**/
mbed_official 146:f64d43ff0c18 122 kClockModuleDRYICE, /**/
mbed_official 146:f64d43ff0c18 123
mbed_official 146:f64d43ff0c18 124 /* Analog*/
mbed_official 146:f64d43ff0c18 125 kClockModuleADC, /* instance 0 - 3*/
mbed_official 146:f64d43ff0c18 126 kClockModuleCMP, /* */
mbed_official 146:f64d43ff0c18 127 kClockModuleDAC, /* instance 0, 1*/
mbed_official 146:f64d43ff0c18 128 kClockModuleVREF, /* */
mbed_official 146:f64d43ff0c18 129 kClockModuleSAI, /* instance 0, 1*/
mbed_official 146:f64d43ff0c18 130
mbed_official 146:f64d43ff0c18 131 /* Timers*/
mbed_official 146:f64d43ff0c18 132 kClockModuleTPM, /* TPM timers 0 - 2*/
mbed_official 146:f64d43ff0c18 133 kClockModulePDB, /* */
mbed_official 146:f64d43ff0c18 134 kClockModuleFTM, /* instance 0 - 3*/
mbed_official 146:f64d43ff0c18 135 kClockModulePIT, /**/
mbed_official 146:f64d43ff0c18 136 kClockModuleLPTIMER, /**/
mbed_official 146:f64d43ff0c18 137 kClockModuleCMT, /**/
mbed_official 146:f64d43ff0c18 138 kClockModuleRTC, /**/
mbed_official 146:f64d43ff0c18 139
mbed_official 146:f64d43ff0c18 140 /* Communication Interfaces*/
mbed_official 146:f64d43ff0c18 141 kClockModuleENET, /**/
mbed_official 146:f64d43ff0c18 142 kClockModuleUSBHS, /**/
mbed_official 146:f64d43ff0c18 143 kClockModuleUSBFS, /**/
mbed_official 146:f64d43ff0c18 144 kClockModuleUSBDCD, /**/
mbed_official 146:f64d43ff0c18 145 kClockModuleFLEXCAN, /* instance 0, 1*/
mbed_official 146:f64d43ff0c18 146 kClockModuleSPI, /* instance 0 - 2*/
mbed_official 146:f64d43ff0c18 147 kClockModuleI2C, /* instance 0, 1*/
mbed_official 146:f64d43ff0c18 148 kClockModuleUART, /* instance 0 - 5*/
mbed_official 146:f64d43ff0c18 149 kClockModuleESDHC, /**/
mbed_official 146:f64d43ff0c18 150 kClockModuleLPUART, /**/
mbed_official 146:f64d43ff0c18 151
mbed_official 146:f64d43ff0c18 152 /* Human-machine Interfaces*/
mbed_official 146:f64d43ff0c18 153 kClockModuleTSI, /**/
mbed_official 146:f64d43ff0c18 154 kClockModuleLCDC, /**/
mbed_official 146:f64d43ff0c18 155 kClockModuleMax
mbed_official 146:f64d43ff0c18 156 } clock_gate_module_names_t;
mbed_official 146:f64d43ff0c18 157
mbed_official 146:f64d43ff0c18 158 /*! @brief Clock source and SEL names */
mbed_official 146:f64d43ff0c18 159 typedef enum _clock_source_names {
mbed_official 146:f64d43ff0c18 160 kClockNfcSrc, /* NFCSRC*/
mbed_official 146:f64d43ff0c18 161 kClockEsdhcSrc, /* ESDHCSRC K70*/
mbed_official 146:f64d43ff0c18 162 kClockSdhcSrc, /* SDHCSRC K64*/
mbed_official 146:f64d43ff0c18 163 kClockLcdcSrc, /* LCDCSRC*/
mbed_official 146:f64d43ff0c18 164 kClockTimeSrc, /* TIMESRC*/
mbed_official 146:f64d43ff0c18 165 kClockRmiiSrc, /* RMIISRC*/
mbed_official 146:f64d43ff0c18 166 kClockUsbfSrc, /* USBFSRC K70*/
mbed_official 146:f64d43ff0c18 167 kClockUsbSrc, /* USBSRC K64, KL25, KV31, and K22*/
mbed_official 146:f64d43ff0c18 168 kClockUsbhSrc, /* USBHSRC*/
mbed_official 146:f64d43ff0c18 169 kClockUart0Src, /* UART0SRC*/
mbed_official 146:f64d43ff0c18 170 kClockTpmSrc, /* TPMSRC*/
mbed_official 146:f64d43ff0c18 171 kClockOsc32kSel, /* OSC32KSEL*/
mbed_official 146:f64d43ff0c18 172 kClockUsbfSel, /* USBF_CLKSEL*/
mbed_official 146:f64d43ff0c18 173 kClockPllfllSel, /* PLLFLLSEL*/
mbed_official 146:f64d43ff0c18 174 kClockNfcSel, /* NFC_CLKSEL*/
mbed_official 146:f64d43ff0c18 175 kClockLcdcSel, /* LCDC_CLKSEL*/
mbed_official 146:f64d43ff0c18 176 kClockTraceSel, /* TRACE_CLKSEL*/
mbed_official 146:f64d43ff0c18 177 kClockClkoutSel, /* CLKOUTSEL*/
mbed_official 146:f64d43ff0c18 178 kClockRtcClkoutSel, /* RTCCLKOUTSEL */
mbed_official 146:f64d43ff0c18 179 kClockSourceMax
mbed_official 146:f64d43ff0c18 180 } clock_source_names_t;
mbed_official 146:f64d43ff0c18 181
mbed_official 146:f64d43ff0c18 182 /*!
mbed_official 146:f64d43ff0c18 183 * @brief Error code definition for the clock manager APIs
mbed_official 146:f64d43ff0c18 184 */
mbed_official 146:f64d43ff0c18 185 typedef enum _clock_manager_error_code {
mbed_official 146:f64d43ff0c18 186 kClockManagerSuccess, /*!< success */
mbed_official 146:f64d43ff0c18 187 kClockManagerNoSuchClockName, /*!< cannot find the clock name */
mbed_official 146:f64d43ff0c18 188 kClockManagerNoSuchClockModule, /*!< cannot find the clock module name */
mbed_official 146:f64d43ff0c18 189 kClockManagerNoSuchClockSource, /*!< cannot find the clock source name */
mbed_official 146:f64d43ff0c18 190 kClockManagerNoSuchDivider, /*!< cannot find the divider name */
mbed_official 146:f64d43ff0c18 191 kClockManagerUnknown /*!< unknown error*/
mbed_official 146:f64d43ff0c18 192 } clock_manager_error_code_t;
mbed_official 146:f64d43ff0c18 193
mbed_official 146:f64d43ff0c18 194
mbed_official 146:f64d43ff0c18 195 /*******************************************************************************
mbed_official 146:f64d43ff0c18 196 * API
mbed_official 146:f64d43ff0c18 197 ******************************************************************************/
mbed_official 146:f64d43ff0c18 198
mbed_official 146:f64d43ff0c18 199 #if defined(__cplusplus)
mbed_official 146:f64d43ff0c18 200 extern "C" {
mbed_official 146:f64d43ff0c18 201 #endif /* __cplusplus*/
mbed_official 146:f64d43ff0c18 202
mbed_official 146:f64d43ff0c18 203 /*! @name Clock Gating*/
mbed_official 146:f64d43ff0c18 204 /*@{*/
mbed_official 146:f64d43ff0c18 205
mbed_official 146:f64d43ff0c18 206 /*!
mbed_official 146:f64d43ff0c18 207 * @brief Enables or disables the clock for a specific clock module.
mbed_official 146:f64d43ff0c18 208 *
mbed_official 146:f64d43ff0c18 209 * This function enables/disables the clock for a specified clock module and
mbed_official 146:f64d43ff0c18 210 * instance. See the clock_gate_module_names_t for supported clock module names
mbed_official 146:f64d43ff0c18 211 * for a specific function and see the Reference Manual for supported clock module
mbed_official 146:f64d43ff0c18 212 * name for a specific chip family. Most module drivers call this function
mbed_official 146:f64d43ff0c18 213 * to gate(disable)/ungate(enable) the clock for a module. However, the application
mbed_official 146:f64d43ff0c18 214 * can also call this function as needed. Disabling the clock causes the module
mbed_official 146:f64d43ff0c18 215 * to stop working. See the Reference Manual to properly enable
mbed_official 146:f64d43ff0c18 216 * and disable the clock for a device module.
mbed_official 146:f64d43ff0c18 217 *
mbed_official 146:f64d43ff0c18 218 * @param moduleName Gate control module name defined in clock_gate_module_names_t
mbed_official 146:f64d43ff0c18 219 * @param instance Instance of the module
mbed_official 146:f64d43ff0c18 220 * @param enable Enable or disable the clock for the module
mbed_official 146:f64d43ff0c18 221 * - true: Enable
mbed_official 146:f64d43ff0c18 222 * - false: Disable
mbed_official 146:f64d43ff0c18 223 * @return status Error code defined in clock_manager_error_code_t
mbed_official 146:f64d43ff0c18 224 */
mbed_official 146:f64d43ff0c18 225 clock_manager_error_code_t clock_manager_set_gate(clock_gate_module_names_t moduleName,
mbed_official 146:f64d43ff0c18 226 uint8_t instance, bool enable);
mbed_official 146:f64d43ff0c18 227
mbed_official 146:f64d43ff0c18 228 /*!
mbed_official 146:f64d43ff0c18 229 * @brief Gets the current clock gate status for a specific clock module.
mbed_official 146:f64d43ff0c18 230 *
mbed_official 146:f64d43ff0c18 231 * This function returns the current clock gate status for a specific clock
mbed_official 146:f64d43ff0c18 232 * module. See clock_gate_module_names_t for supported clock module name.
mbed_official 146:f64d43ff0c18 233 *
mbed_official 146:f64d43ff0c18 234 * @param moduleName Gate control module name defined in clock_gate_module_names_t
mbed_official 146:f64d43ff0c18 235 * @param instance Instance of the module
mbed_official 146:f64d43ff0c18 236 * @param isEnabled Status of the module clock
mbed_official 146:f64d43ff0c18 237 * - true: Enabled
mbed_official 146:f64d43ff0c18 238 * - false: Disabled
mbed_official 146:f64d43ff0c18 239 * @return status Error code defined in clock_manager_error_code_t
mbed_official 146:f64d43ff0c18 240 */
mbed_official 146:f64d43ff0c18 241 clock_manager_error_code_t clock_manager_get_gate(clock_gate_module_names_t moduleName,
mbed_official 146:f64d43ff0c18 242 uint8_t instance, bool *isEnabled);
mbed_official 146:f64d43ff0c18 243
mbed_official 146:f64d43ff0c18 244 /*@}*/
mbed_official 146:f64d43ff0c18 245
mbed_official 146:f64d43ff0c18 246 /*! @name Clock Frequencies*/
mbed_official 146:f64d43ff0c18 247 /*@{*/
mbed_official 146:f64d43ff0c18 248
mbed_official 146:f64d43ff0c18 249 /*!
mbed_official 146:f64d43ff0c18 250 * @brief Gets the clock frequency for a specific clock name.
mbed_official 146:f64d43ff0c18 251 *
mbed_official 146:f64d43ff0c18 252 * This function checks the current clock configurations and then calculates
mbed_official 146:f64d43ff0c18 253 * the clock frequency for a specific clock name defined in clock_names_t.
mbed_official 146:f64d43ff0c18 254 * The MCG must be properly configured before using this function. See
mbed_official 146:f64d43ff0c18 255 * the Reference Manual for supported clock names for different chip families.
mbed_official 146:f64d43ff0c18 256 * The returned value is in Hertz. If it cannot find the clock name
mbed_official 146:f64d43ff0c18 257 * or the name is not supported for a specific chip family, it returns an
mbed_official 146:f64d43ff0c18 258 * error.
mbed_official 146:f64d43ff0c18 259 *
mbed_official 146:f64d43ff0c18 260 * @param clockName Clock names defined in clock_names_t
mbed_official 146:f64d43ff0c18 261 * @param frequency Returned clock frequency value in Hertz
mbed_official 146:f64d43ff0c18 262 * @return status Error code defined in clock_manager_error_code_t
mbed_official 146:f64d43ff0c18 263 */
mbed_official 146:f64d43ff0c18 264 clock_manager_error_code_t clock_manager_get_frequency(clock_names_t clockName,
mbed_official 146:f64d43ff0c18 265 uint32_t *frequency);
mbed_official 146:f64d43ff0c18 266
mbed_official 146:f64d43ff0c18 267 /*!
mbed_official 146:f64d43ff0c18 268 * @brief Gets the clock frequency for a specified clock source.
mbed_official 146:f64d43ff0c18 269 *
mbed_official 146:f64d43ff0c18 270 * This function gets the specified clock source setting and converts it
mbed_official 146:f64d43ff0c18 271 * into a clock name. It calls the internal function to get the value
mbed_official 146:f64d43ff0c18 272 * for that clock name. The returned value is in Hertz.
mbed_official 146:f64d43ff0c18 273 * If it cannot find the clock source or the source is not supported for the
mbed_official 146:f64d43ff0c18 274 * specific chip family, it returns an error.
mbed_official 146:f64d43ff0c18 275 *
mbed_official 146:f64d43ff0c18 276 * @param clockSource Clock source names defined in clock_source_names_t
mbed_official 146:f64d43ff0c18 277 * @param frequency Returned clock frequency value in Hertz
mbed_official 146:f64d43ff0c18 278 * @return status Error code defined in clock_manager_error_code_t
mbed_official 146:f64d43ff0c18 279 */
mbed_official 146:f64d43ff0c18 280 clock_manager_error_code_t clock_manager_get_frequency_by_source(
mbed_official 146:f64d43ff0c18 281 clock_source_names_t clockSource, uint32_t *frequency);
mbed_official 146:f64d43ff0c18 282
mbed_official 146:f64d43ff0c18 283 /*@}*/
mbed_official 146:f64d43ff0c18 284
mbed_official 146:f64d43ff0c18 285 #if defined(__cplusplus)
mbed_official 146:f64d43ff0c18 286 }
mbed_official 146:f64d43ff0c18 287 #endif /* __cplusplus*/
mbed_official 146:f64d43ff0c18 288
mbed_official 146:f64d43ff0c18 289 /*! @}*/
mbed_official 146:f64d43ff0c18 290
mbed_official 146:f64d43ff0c18 291 #endif /* __FSL_CLOCK_MANAGER_H__*/
mbed_official 146:f64d43ff0c18 292 /*******************************************************************************
mbed_official 146:f64d43ff0c18 293 * EOF
mbed_official 146:f64d43ff0c18 294 ******************************************************************************/
mbed_official 146:f64d43ff0c18 295