Ignore:
Timestamp:
Jul 3, 2020, 7:19:17 PM (4 years ago)
Author:
coas-nagasima
Message:

ASP3, TINET, mbed を更新

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/asp3_dcre/tecs_kernel/tInterruptRequest_inline.h

    r321 r429  
    66 *  Copyright (C) 2015 by Ushio Laboratory
    77 *              Graduate School of Engineering Science, Osaka Univ., JAPAN
    8  *  Copyright (C) 2015 by Embedded and Real-Time Systems Laboratory
     8 *  Copyright (C) 2015-2017 by Embedded and Real-Time Systems Laboratory
    99 *              Graduate School of Information Science, Nagoya Univ., JAPAN
    1010 *
     
    6464}
    6565
     66/*
     67 *  割込み要求のクリア
     68 */
     69Inline ER
     70eInterruptRequest_clear(CELLIDX idx)
     71{
     72        CELLCB  *p_cellcb = GET_CELLCB(idx);
     73        return(clr_int(ATTR_interruptNumber));
     74}
     75
     76/*
     77 *  割込みの要求
     78 */
     79Inline ER
     80eInterruptRequest_raise(CELLIDX idx)
     81{
     82        CELLCB  *p_cellcb = GET_CELLCB(idx);
     83        return(ras_int(ATTR_interruptNumber));
     84}
     85
     86/*
     87 *  割込み要求のチェック
     88 */
     89Inline ER_BOOL
     90eInterruptRequest_probe(CELLIDX idx)
     91{
     92        CELLCB  *p_cellcb = GET_CELLCB(idx);
     93        return(prb_int(ATTR_interruptNumber));
     94}
     95
    6696#endif /* TOPPERS_TINTERRUPTREQUEST_INLINE_H */
Note: See TracChangeset for help on using the changeset viewer.