mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Fri Aug 12 13:04:35 2016 +0200
Revision:
123:b0220dba8be7
Release 123 of the mbed library

Changes:
- new targets: nucleo_f207zg, beetle, nrf51_dk, hexiwear,
nuvoton nuc472, vk rz a1h
- ST - fix timer interrupt handler, sleep api fix
- NXP - lpc15xx us ticker fix
- Nordic - analogin fixes, LF clock init addition, enable i2c async

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 123:b0220dba8be7 1 /*******************************************************************************
Kojto 123:b0220dba8be7 2 * DISCLAIMER
Kojto 123:b0220dba8be7 3 * This software is supplied by Renesas Electronics Corporation and is only
Kojto 123:b0220dba8be7 4 * intended for use with Renesas products. No other uses are authorized. This
Kojto 123:b0220dba8be7 5 * software is owned by Renesas Electronics Corporation and is protected under
Kojto 123:b0220dba8be7 6 * all applicable laws, including copyright laws.
Kojto 123:b0220dba8be7 7 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
Kojto 123:b0220dba8be7 8 * THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
Kojto 123:b0220dba8be7 9 * LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
Kojto 123:b0220dba8be7 10 * AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
Kojto 123:b0220dba8be7 11 * TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
Kojto 123:b0220dba8be7 12 * ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
Kojto 123:b0220dba8be7 13 * FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
Kojto 123:b0220dba8be7 14 * ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
Kojto 123:b0220dba8be7 15 * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
Kojto 123:b0220dba8be7 16 * Renesas reserves the right, without notice, to make changes to this software
Kojto 123:b0220dba8be7 17 * and to discontinue the availability of this software. By using this software,
Kojto 123:b0220dba8be7 18 * you agree to the additional terms and conditions found by accessing the
Kojto 123:b0220dba8be7 19 * following link:
Kojto 123:b0220dba8be7 20 * http://www.renesas.com/disclaimer
Kojto 123:b0220dba8be7 21 * Copyright (C) 2012 - 2014 Renesas Electronics Corporation. All rights reserved.
Kojto 123:b0220dba8be7 22 *******************************************************************************/
Kojto 123:b0220dba8be7 23 /**************************************************************************//**
Kojto 123:b0220dba8be7 24 * @file RZ_A1_Init.h
Kojto 123:b0220dba8be7 25 * $Rev: 531 $
Kojto 123:b0220dba8be7 26 * $Date:: 2013-04-16 13:07:35 +0900#$
Kojto 123:b0220dba8be7 27 * @brief RZ_A1 Initialize
Kojto 123:b0220dba8be7 28 ******************************************************************************/
Kojto 123:b0220dba8be7 29
Kojto 123:b0220dba8be7 30 #ifndef RZ_A1_INIT_H
Kojto 123:b0220dba8be7 31 #define RZ_A1_INIT_H
Kojto 123:b0220dba8be7 32
Kojto 123:b0220dba8be7 33 /******************************************************************************
Kojto 123:b0220dba8be7 34 Includes <System Includes> , "Project Includes"
Kojto 123:b0220dba8be7 35 ******************************************************************************/
Kojto 123:b0220dba8be7 36 #include <stdio.h>
Kojto 123:b0220dba8be7 37 #include <stdbool.h>
Kojto 123:b0220dba8be7 38 #include "iodefine.h"
Kojto 123:b0220dba8be7 39
Kojto 123:b0220dba8be7 40 #ifdef __cplusplus
Kojto 123:b0220dba8be7 41 extern "C"
Kojto 123:b0220dba8be7 42 {
Kojto 123:b0220dba8be7 43 #endif /* __cplusplus */
Kojto 123:b0220dba8be7 44
Kojto 123:b0220dba8be7 45
Kojto 123:b0220dba8be7 46 /******************************************************************************
Kojto 123:b0220dba8be7 47 Typedef definitions
Kojto 123:b0220dba8be7 48 ******************************************************************************/
Kojto 123:b0220dba8be7 49
Kojto 123:b0220dba8be7 50 /******************************************************************************
Kojto 123:b0220dba8be7 51 Macro definitions
Kojto 123:b0220dba8be7 52 ******************************************************************************/
Kojto 123:b0220dba8be7 53
Kojto 123:b0220dba8be7 54 /******************************************************************************
Kojto 123:b0220dba8be7 55 Variable Externs
Kojto 123:b0220dba8be7 56 ******************************************************************************/
Kojto 123:b0220dba8be7 57
Kojto 123:b0220dba8be7 58 /******************************************************************************
Kojto 123:b0220dba8be7 59 Functions Prototypes
Kojto 123:b0220dba8be7 60 ******************************************************************************/
Kojto 123:b0220dba8be7 61
Kojto 123:b0220dba8be7 62 void RZ_A1_SetSramWriteEnable(void);
Kojto 123:b0220dba8be7 63 void RZ_A1_InitClock(void);
Kojto 123:b0220dba8be7 64 int RZ_A1_IsClockMode0(void);
Kojto 123:b0220dba8be7 65 void RZ_A1_InitBus(void);
Kojto 123:b0220dba8be7 66
Kojto 123:b0220dba8be7 67 #ifdef __cplusplus
Kojto 123:b0220dba8be7 68 }
Kojto 123:b0220dba8be7 69 #endif /* __cplusplus */
Kojto 123:b0220dba8be7 70
Kojto 123:b0220dba8be7 71 #endif /* RZ_A1_INIT_H */