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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/platform/mbed_interface.h

    r352 r374  
    22/** \addtogroup platform */
    33/** @{*/
     4/**
     5 * \defgroup platform_interface Network interface and other utility functions
     6 * @{
     7 */
     8
    49/* mbed Microcontroller Library
    510 * Copyright (c) 2006-2013 ARM Limited
     
    4247
    4348#if DEVICE_SEMIHOST
     49
     50/**
     51 * \defgroup platform_interface interface functions
     52 * @{
     53 */
    4454
    4555/** Functions to control the mbed interface
     
    114124
    115125/** Print out an error message.  This is typically called when
    116  * hanlding a crash.
     126 * handling a crash.
    117127 *
    118  * @Note Synchronization level: Interrupt safe
     128 * @note Synchronization level: Interrupt safe
     129 *
     130 * @param format    C string that contains data stream to be printed.
     131 *                  Code snippets below show valid format.
     132 *
     133 * @code
     134 * mbed_error_printf("Failed: %s, file: %s, line %d \n", expr, file, line);
     135 * @endcode
     136 *
    119137 */
    120138void mbed_error_printf(const char* format, ...);
     
    123141 * but uses a va_list.
    124142 *
    125  * @Note Synchronization level: Interrupt safe
     143 * @note Synchronization level: Interrupt safe
     144 *
     145 * @param format    C string that contains data stream to be printed.
     146 * @param arg       Variable arguments list
     147 *
    126148 */
    127149void mbed_error_vfprintf(const char * format, va_list arg);
     150/** @}*/
    128151
    129152#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.