Ignore:
Timestamp:
Apr 5, 2019, 9:26:53 PM (5 years ago)
Author:
coas-nagasima
Message:

mbed関連を更新
シリアルドライバをmbedのHALを使うよう変更
ファイルディスクリプタの処理を更新

Location:
asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/targets/TARGET_RENESAS/TARGET_RZA1XX
Files:
1 added
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/targets/TARGET_RENESAS/TARGET_RZA1XX/TARGET_RZ_A1H/device/inc/iodefines/irda_iodefine.h

    r352 r374  
    1919* following link:
    2020* http://www.renesas.com/disclaimer*
    21 * Copyright (C) 2013-2014 Renesas Electronics Corporation. All rights reserved.
     21* Copyright (C) 2013-2015 Renesas Electronics Corporation. All rights reserved.
    2222*******************************************************************************/
    2323/*******************************************************************************
     
    2525* $Rev: $
    2626* $Date::                           $
    27 * Description : Definition of I/O Register (V1.00a)
     27* Description : Definition of I/O Register for RZ/A1H,M (V2.00h)
    2828******************************************************************************/
    2929#ifndef IRDA_IODEFINE_H
    3030#define IRDA_IODEFINE_H
    31 
    32 struct st_irda
    33 {                                                          /* IRDA             */
    34     volatile uint8_t   IRCR;                                   /*  IRCR            */
    35 };
    36 
     31/* ->QAC 0639 : Over 127 members (C90) */
     32/* ->QAC 0857 : Over 1024 #define (C90) */
     33/* ->MISRA 18.4 : Pack unpack union */ /* ->SEC M1.6.2 */
     34/* ->SEC M1.10.1 : Not magic number */
    3735
    3836#define IRDA    (*(struct st_irda    *)0xE8014000uL) /* IRDA */
    3937
    4038
    41 #define IRDAIRCR IRDA.IRCR
     39#define IRDAIRCR (IRDA.IRCR)
     40
     41
     42typedef struct st_irda
     43{
     44                                                           /* IRDA             */
     45    volatile uint8_t   IRCR;                                   /*  IRCR            */
     46} r_io_irda_t;
     47
     48
     49/* <-SEC M1.10.1 */
     50/* <-MISRA 18.4 */ /* <-SEC M1.6.2 */
     51/* <-QAC 0857 */
     52/* <-QAC 0639 */
    4253#endif
Note: See TracChangeset for help on using the changeset viewer.