mbed library sources for airmote

Fork of mbed-src by mbed official

Committer:
zskdan
Date:
Tue Nov 24 14:02:46 2015 +0000
Revision:
625:88d3fa07e462
Parent:
390:35c2c1cf29cd
remove unused service

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) 2013-2014 Renesas Electronics Corporation. All rights reserved.
mbed_official 390:35c2c1cf29cd 22 *******************************************************************************/
mbed_official 390:35c2c1cf29cd 23 /*******************************************************************************
mbed_official 390:35c2c1cf29cd 24 * File Name : spdif_iodefine.h
mbed_official 390:35c2c1cf29cd 25 * $Rev: $
mbed_official 390:35c2c1cf29cd 26 * $Date:: $
mbed_official 390:35c2c1cf29cd 27 * Description : Definition of I/O Register (V1.00a)
mbed_official 390:35c2c1cf29cd 28 ******************************************************************************/
mbed_official 390:35c2c1cf29cd 29 #ifndef SPDIF_IODEFINE_H
mbed_official 390:35c2c1cf29cd 30 #define SPDIF_IODEFINE_H
mbed_official 390:35c2c1cf29cd 31
mbed_official 390:35c2c1cf29cd 32 struct st_spdif
mbed_official 390:35c2c1cf29cd 33 { /* SPDIF */
mbed_official 390:35c2c1cf29cd 34 volatile uint32_t TLCA; /* TLCA */
mbed_official 390:35c2c1cf29cd 35 volatile uint32_t TRCA; /* TRCA */
mbed_official 390:35c2c1cf29cd 36 volatile uint32_t TLCS; /* TLCS */
mbed_official 390:35c2c1cf29cd 37 volatile uint32_t TRCS; /* TRCS */
mbed_official 390:35c2c1cf29cd 38 volatile uint32_t TUI; /* TUI */
mbed_official 390:35c2c1cf29cd 39 volatile uint32_t RLCA; /* RLCA */
mbed_official 390:35c2c1cf29cd 40 volatile uint32_t RRCA; /* RRCA */
mbed_official 390:35c2c1cf29cd 41 volatile uint32_t RLCS; /* RLCS */
mbed_official 390:35c2c1cf29cd 42 volatile uint32_t RRCS; /* RRCS */
mbed_official 390:35c2c1cf29cd 43 volatile uint32_t RUI; /* RUI */
mbed_official 390:35c2c1cf29cd 44 volatile uint32_t CTRL; /* CTRL */
mbed_official 390:35c2c1cf29cd 45 volatile uint32_t STAT; /* STAT */
mbed_official 390:35c2c1cf29cd 46 volatile uint32_t TDAD; /* TDAD */
mbed_official 390:35c2c1cf29cd 47 volatile uint32_t RDAD; /* RDAD */
mbed_official 390:35c2c1cf29cd 48 };
mbed_official 390:35c2c1cf29cd 49
mbed_official 390:35c2c1cf29cd 50
mbed_official 390:35c2c1cf29cd 51 #define SPDIF (*(struct st_spdif *)0xE8012000uL) /* SPDIF */
mbed_official 390:35c2c1cf29cd 52
mbed_official 390:35c2c1cf29cd 53
mbed_official 390:35c2c1cf29cd 54 #define SPDIFTLCA SPDIF.TLCA
mbed_official 390:35c2c1cf29cd 55 #define SPDIFTRCA SPDIF.TRCA
mbed_official 390:35c2c1cf29cd 56 #define SPDIFTLCS SPDIF.TLCS
mbed_official 390:35c2c1cf29cd 57 #define SPDIFTRCS SPDIF.TRCS
mbed_official 390:35c2c1cf29cd 58 #define SPDIFTUI SPDIF.TUI
mbed_official 390:35c2c1cf29cd 59 #define SPDIFRLCA SPDIF.RLCA
mbed_official 390:35c2c1cf29cd 60 #define SPDIFRRCA SPDIF.RRCA
mbed_official 390:35c2c1cf29cd 61 #define SPDIFRLCS SPDIF.RLCS
mbed_official 390:35c2c1cf29cd 62 #define SPDIFRRCS SPDIF.RRCS
mbed_official 390:35c2c1cf29cd 63 #define SPDIFRUI SPDIF.RUI
mbed_official 390:35c2c1cf29cd 64 #define SPDIFCTRL SPDIF.CTRL
mbed_official 390:35c2c1cf29cd 65 #define SPDIFSTAT SPDIF.STAT
mbed_official 390:35c2c1cf29cd 66 #define SPDIFTDAD SPDIF.TDAD
mbed_official 390:35c2c1cf29cd 67 #define SPDIFRDAD SPDIF.RDAD
mbed_official 390:35c2c1cf29cd 68 #endif