forked from Imagelibrary/rtems
106 lines
4.1 KiB
C
106 lines
4.1 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/**
|
|
******************************************************************************
|
|
* @file stm32h747i_eval_errno.h
|
|
* @author MCD Application Team
|
|
* @brief Error Code.
|
|
*
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2019 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
/*
|
|
* RTEMS committer clarification comment on license above:
|
|
*
|
|
* This file comes from STM32CubeH7 project and is located here:
|
|
* https://github.com/STMicroelectronics/STM32CubeH7/blob/master/Drivers/BSP/STM32H747I-EVAL/stm32h747i_eval_errno.h
|
|
*
|
|
* The file root directory is:
|
|
* https://github.com/STMicroelectronics/STM32CubeH7/tree/master/Drivers/BSP/STM32H747I-EVAL
|
|
*
|
|
* This directory contains LICENSE.md file with a following license text:
|
|
*
|
|
* Copyright 2019 STMicroelectronics.
|
|
* 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.
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef STM32H747I_EVAL_ERRNO_H
|
|
#define STM32H747I_EVAL_ERRNO_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Common Error codes */
|
|
#define BSP_ERROR_NONE 0
|
|
#define BSP_ERROR_NO_INIT -1
|
|
#define BSP_ERROR_WRONG_PARAM -2
|
|
#define BSP_ERROR_BUSY -3
|
|
#define BSP_ERROR_PERIPH_FAILURE -4
|
|
#define BSP_ERROR_COMPONENT_FAILURE -5
|
|
#define BSP_ERROR_UNKNOWN_FAILURE -6
|
|
#define BSP_ERROR_UNKNOWN_COMPONENT -7
|
|
#define BSP_ERROR_BUS_FAILURE -8
|
|
#define BSP_ERROR_CLOCK_FAILURE -9
|
|
#define BSP_ERROR_MSP_FAILURE -10
|
|
#define BSP_ERROR_FEATURE_NOT_SUPPORTED -11
|
|
|
|
/* BSP OSPI error codes */
|
|
#define BSP_ERROR_QSPI_ASSIGN_FAILURE -24
|
|
#define BSP_ERROR_QSPI_SETUP_FAILURE -25
|
|
#define BSP_ERROR_QSPI_MMP_LOCK_FAILURE -26
|
|
#define BSP_ERROR_QSPI_MMP_UNLOCK_FAILURE -27
|
|
|
|
/* BSP TS error code */
|
|
#define BSP_ERROR_TS_TOUCH_NOT_DETECTED -30
|
|
|
|
/* BSP BUS error codes */
|
|
#define BSP_ERROR_BUS_TRANSACTION_FAILURE -100
|
|
#define BSP_ERROR_BUS_ARBITRATION_LOSS -101
|
|
#define BSP_ERROR_BUS_ACKNOWLEDGE_FAILURE -102
|
|
#define BSP_ERROR_BUS_PROTOCOL_FAILURE -103
|
|
|
|
#define BSP_ERROR_BUS_MODE_FAULT -104
|
|
#define BSP_ERROR_BUS_FRAME_ERROR -105
|
|
#define BSP_ERROR_BUS_CRC_ERROR -106
|
|
#define BSP_ERROR_BUS_DMA_FAILURE -107
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* STM32H747I_EVAL_ERRNO_H */
|