Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: TEST_USB_Nucleo_F429ZI Essais_USB_Nucleo_F429ZI SID_V3_Nucleo_F429ZI SID_V4_Nucleo_F429ZI_copy
mbed-rtos/rtx/TARGET_ARM7/rt_Event.h@0:77ca32e8e04e, 2020-09-25 (annotated)
- Committer:
- pierreprovent
- Date:
- Fri Sep 25 10:17:49 2020 +0000
- Revision:
- 0:77ca32e8e04e
Programme acquisition en enregistrement sur clef USB carte Nucleo F429ZI cours ELE118 Cnam
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
pierreprovent | 0:77ca32e8e04e | 1 | /*---------------------------------------------------------------------------- |
pierreprovent | 0:77ca32e8e04e | 2 | * RL-ARM - RTX |
pierreprovent | 0:77ca32e8e04e | 3 | *---------------------------------------------------------------------------- |
pierreprovent | 0:77ca32e8e04e | 4 | * Name: RT_EVENT.H |
pierreprovent | 0:77ca32e8e04e | 5 | * Purpose: Implements waits and wake-ups for event flags |
pierreprovent | 0:77ca32e8e04e | 6 | * Rev.: V4.60 |
pierreprovent | 0:77ca32e8e04e | 7 | *---------------------------------------------------------------------------- |
pierreprovent | 0:77ca32e8e04e | 8 | * |
pierreprovent | 0:77ca32e8e04e | 9 | * Copyright (c) 1999-2009 KEIL, 2009-2015 ARM Germany GmbH |
pierreprovent | 0:77ca32e8e04e | 10 | * All rights reserved. |
pierreprovent | 0:77ca32e8e04e | 11 | * Redistribution and use in source and binary forms, with or without |
pierreprovent | 0:77ca32e8e04e | 12 | * modification, are permitted provided that the following conditions are met: |
pierreprovent | 0:77ca32e8e04e | 13 | * - Redistributions of source code must retain the above copyright |
pierreprovent | 0:77ca32e8e04e | 14 | * notice, this list of conditions and the following disclaimer. |
pierreprovent | 0:77ca32e8e04e | 15 | * - Redistributions in binary form must reproduce the above copyright |
pierreprovent | 0:77ca32e8e04e | 16 | * notice, this list of conditions and the following disclaimer in the |
pierreprovent | 0:77ca32e8e04e | 17 | * documentation and/or other materials provided with the distribution. |
pierreprovent | 0:77ca32e8e04e | 18 | * - Neither the name of ARM nor the names of its contributors may be used |
pierreprovent | 0:77ca32e8e04e | 19 | * to endorse or promote products derived from this software without |
pierreprovent | 0:77ca32e8e04e | 20 | * specific prior written permission. |
pierreprovent | 0:77ca32e8e04e | 21 | * |
pierreprovent | 0:77ca32e8e04e | 22 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
pierreprovent | 0:77ca32e8e04e | 23 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
pierreprovent | 0:77ca32e8e04e | 24 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
pierreprovent | 0:77ca32e8e04e | 25 | * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE |
pierreprovent | 0:77ca32e8e04e | 26 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
pierreprovent | 0:77ca32e8e04e | 27 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
pierreprovent | 0:77ca32e8e04e | 28 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
pierreprovent | 0:77ca32e8e04e | 29 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
pierreprovent | 0:77ca32e8e04e | 30 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
pierreprovent | 0:77ca32e8e04e | 31 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
pierreprovent | 0:77ca32e8e04e | 32 | * POSSIBILITY OF SUCH DAMAGE. |
pierreprovent | 0:77ca32e8e04e | 33 | *---------------------------------------------------------------------------*/ |
pierreprovent | 0:77ca32e8e04e | 34 | |
pierreprovent | 0:77ca32e8e04e | 35 | /* Functions */ |
pierreprovent | 0:77ca32e8e04e | 36 | extern OS_RESULT rt_evt_wait (U16 wait_flags, U16 timeout, BOOL and_wait); |
pierreprovent | 0:77ca32e8e04e | 37 | extern void rt_evt_set (U16 event_flags, OS_TID task_id); |
pierreprovent | 0:77ca32e8e04e | 38 | extern void rt_evt_clr (U16 clear_flags, OS_TID task_id); |
pierreprovent | 0:77ca32e8e04e | 39 | extern void isr_evt_set (U16 event_flags, OS_TID task_id); |
pierreprovent | 0:77ca32e8e04e | 40 | extern U16 rt_evt_get (void); |
pierreprovent | 0:77ca32e8e04e | 41 | extern void rt_evt_psh (P_TCB p_CB, U16 set_flags); |
pierreprovent | 0:77ca32e8e04e | 42 | |
pierreprovent | 0:77ca32e8e04e | 43 | /*---------------------------------------------------------------------------- |
pierreprovent | 0:77ca32e8e04e | 44 | * end of file |
pierreprovent | 0:77ca32e8e04e | 45 | *---------------------------------------------------------------------------*/ |
pierreprovent | 0:77ca32e8e04e | 46 |