mbedtls_debug.h 834 B

1234567891011121314151617181920212223
  1. /********************************* (C) РОТЕК ***********************************
  2. * @module
  3. * @file
  4. * @version 1.0.0
  5. * @date XX.XX.XXXX
  6. * $brief
  7. *******************************************************************************
  8. * @history Version Author Comment
  9. * XX.XX.XXXX 1.0.0 Telenkov D.A. First release.
  10. *******************************************************************************
  11. */
  12. /* Define to prevent recursive ----------------------------------------------*/
  13. #ifndef __MBEDTLS_DEBUG_H
  14. #define __MBEDTLS_DEBUG_H
  15. #include "stm32f4xx.h"
  16. void MBEDTLS_Debug(void *ctx, int level, const char *file, int line, const char *str);
  17. #endif /* #ifndef __MBEDTLS_DEBUG_H */
  18. /********************************* (C) РОТЕК **********************************/