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:
Wed Jul 01 09:45:11 2015 +0100
Revision:
579:53297373a894
Parent:
390:35c2c1cf29cd
Synchronized with git revision d5b4d2ab9c47edb4dc5776e7177b0c2263459081

Full URL: https://github.com/mbedmicro/mbed/commit/d5b4d2ab9c47edb4dc5776e7177b0c2263459081/

Initial version of drivers for SAMR21

Who changed what in which revision?

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