Initial commit

Dependencies:   FastPWM

Committer:
lypinator
Date:
Wed Sep 16 01:11:49 2020 +0000
Revision:
0:bb348c97df44
Added PWM

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lypinator 0:bb348c97df44 1 /* mbed Microcontroller Library
lypinator 0:bb348c97df44 2 * Copyright (c) 2006-2012 ARM Limited
lypinator 0:bb348c97df44 3 *
lypinator 0:bb348c97df44 4 * Permission is hereby granted, free of charge, to any person obtaining a copy
lypinator 0:bb348c97df44 5 * of this software and associated documentation files (the "Software"), to deal
lypinator 0:bb348c97df44 6 * in the Software without restriction, including without limitation the rights
lypinator 0:bb348c97df44 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
lypinator 0:bb348c97df44 8 * copies of the Software, and to permit persons to whom the Software is
lypinator 0:bb348c97df44 9 * furnished to do so, subject to the following conditions:
lypinator 0:bb348c97df44 10 *
lypinator 0:bb348c97df44 11 * The above copyright notice and this permission notice shall be included in
lypinator 0:bb348c97df44 12 * all copies or substantial portions of the Software.
lypinator 0:bb348c97df44 13 *
lypinator 0:bb348c97df44 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
lypinator 0:bb348c97df44 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
lypinator 0:bb348c97df44 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
lypinator 0:bb348c97df44 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
lypinator 0:bb348c97df44 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
lypinator 0:bb348c97df44 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
lypinator 0:bb348c97df44 20 * SOFTWARE.
lypinator 0:bb348c97df44 21 */
lypinator 0:bb348c97df44 22 #ifndef MBED_CMSIS_CONF_H
lypinator 0:bb348c97df44 23 #define MBED_CMSIS_CONF_H
lypinator 0:bb348c97df44 24
lypinator 0:bb348c97df44 25 #ifndef MBED_CONF_TZ_PROCESS_STACK_SIZE
lypinator 0:bb348c97df44 26 #define MBED_CONF_TZ_PROCESS_STACK_SIZE 512
lypinator 0:bb348c97df44 27 #endif
lypinator 0:bb348c97df44 28 #ifndef MBED_CONF_TZ_PROCESS_STACK_SLOTS
lypinator 0:bb348c97df44 29 #define MBED_CONF_TZ_PROCESS_STACK_SLOTS 8
lypinator 0:bb348c97df44 30 #endif
lypinator 0:bb348c97df44 31
lypinator 0:bb348c97df44 32 #define TZ_PROCESS_STACK_SLOTS MBED_CONF_TZ_PROCESS_STACK_SLOTS
lypinator 0:bb348c97df44 33 #define TZ_PROCESS_STACK_SIZE MBED_CONF_TZ_PROCESS_STACK_SIZE
lypinator 0:bb348c97df44 34
lypinator 0:bb348c97df44 35 #endif /* MBED_CMSIS_CONF_H */