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:
2 added
1 copied

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/targets/TARGET_RENESAS/TARGET_RZA1XX/common/r_typedefs.h

    r373 r374  
    3636#include <stdbool.h>
    3737#include <stdint.h>
     38#if defined(__ARM_NEON__)
     39#include <arm_neon.h>
     40#endif /* __ARM_NEON__ */
    3841
    39 #if defined(__ARM_NEON__)
     42#ifndef float32_t
     43typedef float               float32_t;
     44#endif
     45#ifndef float64_t
     46typedef double              float64_t;
     47#endif
    4048
    41 #include <arm_neon.h>
    42 
    43 #else /* __ARM_NEON__ */
    44 
    45 typedef float               float32_t;
    46 typedef double              float64_t;
    47 
    48 #endif /* __ARM_NEON__ */
    4949
    5050/******************************************************************************
     
    5252******************************************************************************/
    5353typedef char                char_t;
    54 typedef int                 bool_t;
     54#ifndef bool_t
     55typedef bool                bool_t;
     56#endif
    5557typedef int                 int_t;
    5658typedef long double         float128_t;
Note: See TracChangeset for help on using the changeset viewer.