mirror of https://github.com/ARMmbed/mbed-os.git
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
/**
|
|
*****************************************************************************
|
|
* @file system_TMPM3Hy.h
|
|
* @brief CMSIS Cortex-M3 Device Peripheral Access Layer Header File for the
|
|
* TOSHIBA 'TMPM3Hy' Device Series
|
|
* @version V1.0.1.0
|
|
* $Date:: 2017-07-01 #$
|
|
*
|
|
* DO NOT USE THIS SOFTWARE WITHOUT THE SOFTWARE LISENCE AGREEMENT.
|
|
*
|
|
* (C)Copyright TOSHIBA MICROELECTRONICS CORPORATION 2017 All rights reserved
|
|
*****************************************************************************
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifndef __SYSTEM_TMPM3HQ_H
|
|
#define __SYSTEM_TMPM3HQ_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
|
|
|
|
/**
|
|
* Initialize the system
|
|
*
|
|
* @param none
|
|
* @return none
|
|
*
|
|
* @brief Setup the microcontroller system.
|
|
* Initialize the System and update the SystemCoreClock variable.
|
|
*/
|
|
extern void SystemInit (void);
|
|
|
|
/**
|
|
* Update SystemCoreClock variable
|
|
*
|
|
* @param none
|
|
* @return none
|
|
*
|
|
* @brief Updates the SystemCoreClock with current core Clock
|
|
* retrieved from cpu registers.
|
|
*/
|
|
extern void SystemCoreClockUpdate (void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|