Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.

Upstream: https://github.com/ARMmbed/DAPLink

Committer:
Pawel Zarembski
Date:
Tue Apr 07 12:55:42 2020 +0200
Revision:
0:01f31e923fe2
hani: DAPLink with reset workaround

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pawel Zarembski 0:01f31e923fe2 1 /**
Pawel Zarembski 0:01f31e923fe2 2 * @file tasks.h
Pawel Zarembski 0:01f31e923fe2 3 * @brief Macros for configuring the run time tasks
Pawel Zarembski 0:01f31e923fe2 4 *
Pawel Zarembski 0:01f31e923fe2 5 * DAPLink Interface Firmware
Pawel Zarembski 0:01f31e923fe2 6 * Copyright (c) 2009-2016, ARM Limited, All Rights Reserved
Pawel Zarembski 0:01f31e923fe2 7 * SPDX-License-Identifier: Apache-2.0
Pawel Zarembski 0:01f31e923fe2 8 *
Pawel Zarembski 0:01f31e923fe2 9 * Licensed under the Apache License, Version 2.0 (the "License"); you may
Pawel Zarembski 0:01f31e923fe2 10 * not use this file except in compliance with the License.
Pawel Zarembski 0:01f31e923fe2 11 * You may obtain a copy of the License at
Pawel Zarembski 0:01f31e923fe2 12 *
Pawel Zarembski 0:01f31e923fe2 13 * http://www.apache.org/licenses/LICENSE-2.0
Pawel Zarembski 0:01f31e923fe2 14 *
Pawel Zarembski 0:01f31e923fe2 15 * Unless required by applicable law or agreed to in writing, software
Pawel Zarembski 0:01f31e923fe2 16 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
Pawel Zarembski 0:01f31e923fe2 17 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Pawel Zarembski 0:01f31e923fe2 18 * See the License for the specific language governing permissions and
Pawel Zarembski 0:01f31e923fe2 19 * limitations under the License.
Pawel Zarembski 0:01f31e923fe2 20 */
Pawel Zarembski 0:01f31e923fe2 21
Pawel Zarembski 0:01f31e923fe2 22 #ifndef TASK_H
Pawel Zarembski 0:01f31e923fe2 23 #define TASK_H
Pawel Zarembski 0:01f31e923fe2 24
Pawel Zarembski 0:01f31e923fe2 25 #ifdef __cplusplus
Pawel Zarembski 0:01f31e923fe2 26 extern "C" {
Pawel Zarembski 0:01f31e923fe2 27 #endif
Pawel Zarembski 0:01f31e923fe2 28
Pawel Zarembski 0:01f31e923fe2 29 #define NO_TIMEOUT (0xffff)
Pawel Zarembski 0:01f31e923fe2 30
Pawel Zarembski 0:01f31e923fe2 31 #define LOWEST_PRIORITY (1) /* Priority 0 is reserved for the RTX idle task */
Pawel Zarembski 0:01f31e923fe2 32 #define HIGHEST_PRIORITY (254) /* Priority 255 is reserved by RTX */
Pawel Zarembski 0:01f31e923fe2 33
Pawel Zarembski 0:01f31e923fe2 34 #define MAIN_TASK_PRIORITY (10)
Pawel Zarembski 0:01f31e923fe2 35 #define TIMER_TASK_PRIORITY (11)
Pawel Zarembski 0:01f31e923fe2 36 #define TIMER_TASK_30_PRIORITY (TIMER_TASK_PRIORITY)
Pawel Zarembski 0:01f31e923fe2 37
Pawel Zarembski 0:01f31e923fe2 38 // trouble here is that reset for different targets is implemented differently so all targets
Pawel Zarembski 0:01f31e923fe2 39 // have to use the largest stack or these have to be defined in multiple places... Not ideal
Pawel Zarembski 0:01f31e923fe2 40 // may want to move away from threads for some of these behaviours to optimize mempory usage (RAM)
Pawel Zarembski 0:01f31e923fe2 41 #define TIMER_TASK_30_STACK (136)
Pawel Zarembski 0:01f31e923fe2 42 #define MAIN_TASK_STACK (800)
Pawel Zarembski 0:01f31e923fe2 43
Pawel Zarembski 0:01f31e923fe2 44 #ifdef __cplusplus
Pawel Zarembski 0:01f31e923fe2 45 }
Pawel Zarembski 0:01f31e923fe2 46 #endif
Pawel Zarembski 0:01f31e923fe2 47
Pawel Zarembski 0:01f31e923fe2 48 #endif