Pierre Provent / USBHost

Dependents:   TEST_USB_Nucleo_F429ZI Essais_USB_Nucleo_F429ZI SID_V3_Nucleo_F429ZI SID_V4_Nucleo_F429ZI_copy

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?

UserRevisionLine numberNew contents of line
pierreprovent 0:77ca32e8e04e 1 /* mbed Microcontroller Library
pierreprovent 0:77ca32e8e04e 2 * Copyright (c) 2016-2017 ARM Limited
pierreprovent 0:77ca32e8e04e 3 *
pierreprovent 0:77ca32e8e04e 4 * Licensed under the Apache License, Version 2.0 (the "License");
pierreprovent 0:77ca32e8e04e 5 * you may not use this file except in compliance with the License.
pierreprovent 0:77ca32e8e04e 6 * You may obtain a copy of the License at
pierreprovent 0:77ca32e8e04e 7 *
pierreprovent 0:77ca32e8e04e 8 * http://www.apache.org/licenses/LICENSE-2.0
pierreprovent 0:77ca32e8e04e 9 *
pierreprovent 0:77ca32e8e04e 10 * Unless required by applicable law or agreed to in writing, software
pierreprovent 0:77ca32e8e04e 11 * distributed under the License is distributed on an "AS IS" BASIS,
pierreprovent 0:77ca32e8e04e 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
pierreprovent 0:77ca32e8e04e 13 * See the License for the specific language governing permissions and
pierreprovent 0:77ca32e8e04e 14 * limitations under the License.
pierreprovent 0:77ca32e8e04e 15 */
pierreprovent 0:77ca32e8e04e 16
pierreprovent 0:77ca32e8e04e 17 #ifndef MBED_MBED_RTX_H
pierreprovent 0:77ca32e8e04e 18 #define MBED_MBED_RTX_H
pierreprovent 0:77ca32e8e04e 19
pierreprovent 0:77ca32e8e04e 20 #if defined(TARGET_BEETLE) || defined(TARGET_CM3DS_MPS2)
pierreprovent 0:77ca32e8e04e 21
pierreprovent 0:77ca32e8e04e 22 #ifndef INITIAL_SP
pierreprovent 0:77ca32e8e04e 23 #define INITIAL_SP (0x20020000UL)
pierreprovent 0:77ca32e8e04e 24 #endif
pierreprovent 0:77ca32e8e04e 25
pierreprovent 0:77ca32e8e04e 26 // RTX 4 only config below, for backward-compability
pierreprovent 0:77ca32e8e04e 27
pierreprovent 0:77ca32e8e04e 28 #ifndef OS_TASKCNT
pierreprovent 0:77ca32e8e04e 29 #define OS_TASKCNT 7
pierreprovent 0:77ca32e8e04e 30 #endif
pierreprovent 0:77ca32e8e04e 31 #ifndef OS_MAINSTKSIZE
pierreprovent 0:77ca32e8e04e 32 #define OS_MAINSTKSIZE 112
pierreprovent 0:77ca32e8e04e 33 #endif
pierreprovent 0:77ca32e8e04e 34 #ifndef OS_CLOCK
pierreprovent 0:77ca32e8e04e 35 #define OS_CLOCK 24000000
pierreprovent 0:77ca32e8e04e 36 #endif
pierreprovent 0:77ca32e8e04e 37
pierreprovent 0:77ca32e8e04e 38 #endif
pierreprovent 0:77ca32e8e04e 39
pierreprovent 0:77ca32e8e04e 40 #endif // MBED_MBED_RTX_H