1 /* PSA status codes used by psasim. */ 2 3 /* 4 * Copyright The Mbed TLS Contributors 5 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 6 */ 7 8 #ifndef PSA_ERROR_H 9 #define PSA_ERROR_H 10 11 #include <stdint.h> 12 13 #include "common.h" 14 15 #define PSA_ERROR_PROGRAMMER_ERROR ((psa_status_t) -129) 16 #define PSA_ERROR_CONNECTION_REFUSED ((psa_status_t) -130) 17 #define PSA_ERROR_CONNECTION_BUSY ((psa_status_t) -131) 18 19 #endif 20