1234567891011121314151617181920212223 |
- /********************************* (C) РОТЕК ***********************************
- * @module
- * @file
- * @version 1.0.0
- * @date XX.XX.XXXX
- * $brief
- *******************************************************************************
- * @history Version Author Comment
- * XX.XX.XXXX 1.0.0 Telenkov D.A. First release.
- *******************************************************************************
- */
- /* Define to prevent recursive ----------------------------------------------*/
- #ifndef __MBEDTLS_DEBUG_H
- #define __MBEDTLS_DEBUG_H
-
- #include "stm32f4xx.h"
- void MBEDTLS_Debug(void *ctx, int level, const char *file, int line, const char *str);
- #endif /* #ifndef __MBEDTLS_DEBUG_H */
- /********************************* (C) РОТЕК **********************************/
|