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_wait_api.h

    r352 r374  
    22/** \addtogroup platform */
    33/** @{*/
     4/**
     5 * \defgroup platform_wait_api wait_api functions
     6 * @{
     7 */
     8
    49/* mbed Microcontroller Library
    510 * Copyright (c) 2006-2013 ARM Limited
     
    4247 *     }
    4348 * }
     49 * @endcode
    4450 */
    4551
     
    4854 *
    4955 *  @param s number of seconds to wait
     56 *
     57 *  @note
     58 *    If the RTOS is present, this function always spins to get the exact number of microseconds,
     59 *    which potentially affects power (such as preventing deep sleep) and multithread performance.
     60 *    You can avoid it by using Thread::wait().
    5061 */
    5162void wait(float s);
     
    5465 *
    5566 *  @param ms the whole number of milliseconds to wait
     67 *
     68 *  @note
     69 *    If the RTOS is present, this function always spins to get the exact number of microseconds,
     70 *    which potentially affects power (such as preventing deep sleep) and multithread performance.
     71 *    You can avoid it by using Thread::wait().
    5672 */
    5773void wait_ms(int ms);
     
    6076 *
    6177 *  @param us the whole number of microseconds to wait
     78 *
     79 *  @note
     80 *    If the RTOS is present, this function always spins to get the exact number of microseconds,
     81 *    which potentially affects power (such as preventing deep sleep) and multithread performance.
    6282 */
    6383void wait_us(int us);
     
    7090
    7191/** @}*/
     92/** @}*/
Note: See TracChangeset for help on using the changeset viewer.