201 lines
6.3 KiB
C
201 lines
6.3 KiB
C
/*
|
|
* Copyright (c) 2013-2020, Huawei Technologies Co., Ltd. All rights reserved.
|
|
* Copyright (c) 2020, Huawei Device Co., Ltd. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
* conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
* provided with the distribution.
|
|
*
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors may be used
|
|
* to endorse or promote products derived from this software without specific prior written
|
|
* permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef _TARGETS_CONFIG_H
|
|
#define _TARGETS_CONFIG_H
|
|
#include "soc.h"
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
#endif /* __cplusplus */
|
|
|
|
#define OS_SYS_CLOCK 10000000UL
|
|
|
|
#define LOSCFG_BASE_CORE_TICK_PER_SECOND 1000
|
|
|
|
/****************************** System clock module configuration ****************************/
|
|
#define LOSCFG_BASE_CORE_TIMER_NUM 7
|
|
|
|
/****************************** Task module configuration ********************************/
|
|
/**
|
|
* @ingroup los_config
|
|
* Default task priority
|
|
*/
|
|
#define LOSCFG_BASE_CORE_TSK_DEFAULT_PRIO 10
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Maximum supported number of tasks except the idle task rather than the number of usable tasks
|
|
*/
|
|
#define LOSCFG_BASE_CORE_TSK_LIMIT 20 // max num task
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Size of the idle task stack
|
|
*/
|
|
#define LOSCFG_BASE_CORE_TSK_IDLE_STACK_SIZE SIZE(0x500) // IDLE task stack
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Default task stack size
|
|
*/
|
|
#define LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE SIZE(0x2D0) // default stack
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Minimum stack size.
|
|
*/
|
|
#define LOS_TASK_MIN_STACK_SIZE (ALIGN(0x130, 16))
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Configuration item for task Robin tailoring
|
|
*/
|
|
#define LOSCFG_BASE_CORE_TIMESLICE YES // task-ROBIN moduel cutting switch
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Longest execution time of tasks with the same priorities
|
|
*/
|
|
#define LOSCFG_BASE_CORE_TIMESLICE_TIMEOUT 10
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Configuration item for task (stack) monitoring module tailoring
|
|
*/
|
|
#define LOSCFG_BASE_CORE_TSK_MONITOR YES
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Define a usable task priority.Highest task priority.
|
|
*/
|
|
#define LOS_TASK_PRIORITY_HIGHEST 0
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Define a usable task priority.Lowest task priority.
|
|
*/
|
|
#define LOS_TASK_PRIORITY_LOWEST 31
|
|
|
|
/****************************** Semaphore module configuration ******************************/
|
|
/**
|
|
* @ingroup los_config
|
|
* Configuration item for semaphore module tailoring
|
|
*/
|
|
#define LOSCFG_BASE_IPC_SEM YES
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Maximum supported number of semaphores
|
|
*/
|
|
#define LOSCFG_BASE_IPC_SEM_LIMIT 10 // the max sem-numb
|
|
|
|
/****************************** mutex module configuration ******************************/
|
|
/**
|
|
* @ingroup los_config
|
|
* Configuration item for mutex module tailoring
|
|
*/
|
|
#define LOSCFG_BASE_IPC_MUX YES
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Maximum supported number of mutexes
|
|
*/
|
|
#define LOSCFG_BASE_IPC_MUX_LIMIT 10 // the max mutex-num
|
|
|
|
/****************************** Queue module configuration ********************************/
|
|
/**
|
|
* @ingroup los_config
|
|
* Configuration item for queue module tailoring
|
|
*/
|
|
#define LOSCFG_BASE_IPC_QUEUE YES
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Maximum supported number of queues rather than the number of usable queues
|
|
*/
|
|
#define LOSCFG_BASE_IPC_QUEUE_LIMIT 10 //the max queue-numb
|
|
|
|
/****************************** Software timer module configuration **************************/
|
|
/**
|
|
* @ingroup los_config
|
|
* Configuration item for software timer module tailoring
|
|
*/
|
|
#define LOSCFG_BASE_CORE_SWTMR YES
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Maximum supported number of software timers rather than the number of usable software timers
|
|
*/
|
|
#define LOSCFG_BASE_CORE_SWTMR_LIMIT 10 // the max SWTMR numb
|
|
|
|
/****************************** Memory module configuration **************************/
|
|
/**
|
|
* @ingroup los_config
|
|
* Configuration module tailoring of mem node integrity checking
|
|
*/
|
|
#define LOSCFG_BASE_MEM_NODE_INTEGRITY_CHECK YES
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Configuration module tailoring of mem node size checking
|
|
*/
|
|
#define LOSCFG_BASE_MEM_NODE_SIZE_CHECK YES
|
|
|
|
/**
|
|
* @ingroup los_config
|
|
* Number of memory checking blocks
|
|
*/
|
|
#define OS_SYS_MEM_NUM 20
|
|
|
|
#define LOSCFG_KERNEL_MEM_SLAB NO
|
|
|
|
#ifdef LITEOSCFG_EXTENDED_KERNEL
|
|
#define LOSCFG_KERNEL_TICKLESS NO
|
|
#define LOSCFG_BASE_CORE_CPUP YES
|
|
#endif
|
|
|
|
#ifdef LITEOSCFG_CMSIS
|
|
#define CMSIS_OS_VER 1
|
|
#define LOSCFG_COMPAT_CMSIS_FW YES
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* _TARGETS_CONFIG_H */
|