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 - 2013 Renesas Electronics Corporation. All rights reserved.
mbed_official 390:35c2c1cf29cd 22 *******************************************************************************/
mbed_official 390:35c2c1cf29cd 23 /*******************************************************************************
mbed_official 390:35c2c1cf29cd 24 * File Name : r_typedefs.h
mbed_official 390:35c2c1cf29cd 25 * $Rev: 788 $
mbed_official 390:35c2c1cf29cd 26 * $Date:: 2014-04-07 18:57:13 +0900#$
mbed_official 390:35c2c1cf29cd 27 * Description : basic type definition
mbed_official 390:35c2c1cf29cd 28 ******************************************************************************/
mbed_official 390:35c2c1cf29cd 29 #ifndef R_TYPEDEFS_H
mbed_official 390:35c2c1cf29cd 30 #define R_TYPEDEFS_H
mbed_official 390:35c2c1cf29cd 31
mbed_official 390:35c2c1cf29cd 32 /******************************************************************************
mbed_official 390:35c2c1cf29cd 33 Includes <System Includes> , "Project Includes"
mbed_official 390:35c2c1cf29cd 34 ******************************************************************************/
mbed_official 390:35c2c1cf29cd 35 #include <stddef.h>
mbed_official 390:35c2c1cf29cd 36 #include <stdbool.h>
mbed_official 390:35c2c1cf29cd 37 #include <stdint.h>
mbed_official 390:35c2c1cf29cd 38
mbed_official 390:35c2c1cf29cd 39 #if defined(__ARM_NEON__)
mbed_official 390:35c2c1cf29cd 40
mbed_official 390:35c2c1cf29cd 41 #include <arm_neon.h>
mbed_official 390:35c2c1cf29cd 42
mbed_official 390:35c2c1cf29cd 43 #else /* __ARM_NEON__ */
mbed_official 390:35c2c1cf29cd 44
mbed_official 390:35c2c1cf29cd 45 typedef float float32_t;
mbed_official 390:35c2c1cf29cd 46 typedef double float64_t;
mbed_official 390:35c2c1cf29cd 47
mbed_official 390:35c2c1cf29cd 48 #endif /* __ARM_NEON__ */
mbed_official 390:35c2c1cf29cd 49
mbed_official 390:35c2c1cf29cd 50 /******************************************************************************
mbed_official 390:35c2c1cf29cd 51 Typedef definitions
mbed_official 390:35c2c1cf29cd 52 ******************************************************************************/
mbed_official 390:35c2c1cf29cd 53 typedef char char_t;
mbed_official 390:35c2c1cf29cd 54 typedef int bool_t;
mbed_official 390:35c2c1cf29cd 55 typedef int int_t;
mbed_official 390:35c2c1cf29cd 56 typedef long double float128_t;
mbed_official 390:35c2c1cf29cd 57 typedef signed long long_t;
mbed_official 390:35c2c1cf29cd 58 typedef unsigned long ulong_t;
mbed_official 390:35c2c1cf29cd 59
mbed_official 390:35c2c1cf29cd 60 #endif /* R_TYPEDEFS_H */
mbed_official 390:35c2c1cf29cd 61