mirror of https://github.com/ARMmbed/mbed-os.git
84 lines
2.7 KiB
C
84 lines
2.7 KiB
C
/**
|
|
******************************************************************************
|
|
* @file utilities_conf.h
|
|
* @author MCD Application Team
|
|
* @brief Configuration of utilities
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© Copyright (c) 2019 STMicroelectronics.
|
|
* All rights reserved.</center></h2>
|
|
*
|
|
* This software component is licensed by ST under BSD 3-Clause license,
|
|
* the "License"; You may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at:
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __UTILITIES_CONF_H
|
|
#define __UTILITIES_CONF_H
|
|
|
|
#include "app_conf.h"
|
|
|
|
/******************************************************************************
|
|
* OTP manager
|
|
******************************************************************************/
|
|
#define CFG_OTP_BASE_ADDRESS OTP_AREA_BASE
|
|
|
|
#define CFG_OTP_END_ADRESS OTP_AREA_END_ADDR
|
|
|
|
/******************************************************************************
|
|
* Scheduler
|
|
******************************************************************************/
|
|
|
|
#define SCH_CONF_TASK_NBR CFG_TASK_NBR
|
|
|
|
#define SCH_CONF_PRIO_NBR CFG_PRIO_NBR
|
|
|
|
/******************************************************************************
|
|
* Debug Trace
|
|
******************************************************************************/
|
|
/**
|
|
* When DBG_TRACE_FULL is set to 1, the trace are output with the API name, the file name and the line number
|
|
* When DBG_TRACE_LIGTH is set to 1, only the debug message is output
|
|
*
|
|
* When both are set to 0, no trace are output
|
|
* When both are set to 1, DBG_TRACE_FULL is selected
|
|
*/
|
|
#define DBG_TRACE_LIGTH 1
|
|
#define DBG_TRACE_FULL 0
|
|
|
|
#if (( CFG_DEBUG_TRACE != 0 ) && ( DBG_TRACE_LIGTH == 0 ) && (DBG_TRACE_FULL == 0))
|
|
#undef DBG_TRACE_FULL
|
|
#undef DBG_TRACE_LIGTH
|
|
#define DBG_TRACE_FULL 0
|
|
#define DBG_TRACE_LIGTH 1
|
|
#endif
|
|
|
|
#if ( CFG_DEBUG_TRACE == 0 )
|
|
#undef DBG_TRACE_FULL
|
|
#undef DBG_TRACE_LIGTH
|
|
#define DBG_TRACE_FULL 0
|
|
#define DBG_TRACE_LIGTH 0
|
|
#endif
|
|
|
|
/**
|
|
* When not set, the traces is looping on sending the trace over UART
|
|
*/
|
|
#define DBG_TRACE_USE_CIRCULAR_QUEUE 1
|
|
|
|
/**
|
|
* max buffer Size to queue data traces and max data trace allowed.
|
|
* Only Used if DBG_TRACE_USE_CIRCULAR_QUEUE is defined
|
|
*/
|
|
#define DBG_TRACE_MSG_QUEUE_SIZE 4096
|
|
#define MAX_DBG_TRACE_MSG_SIZE 1024
|
|
|
|
#endif /*__UTILITIES_CONF_H */
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|