aem_log.h 239 B

123456789101112
  1. #ifndef __AEM_LOG_H__
  2. #define __AEM_LOG_H__
  3. #include <stdint.h>
  4. #include <stdio.h>
  5. #include "os_common_api.h"
  6. #define AEM_LOG_E SYS_LOG_ERR
  7. #define AEM_LOG_W SYS_LOG_WRN
  8. #define AEM_LOG_I SYS_LOG_WRN
  9. #define AEM_LOG_D SYS_LOG_DBG
  10. #endif