os_header.h 401 B

12345678910111213141516171819
  1. // Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD
  2. /* SPDX-License-Identifier: GPL-2.0 OR Apache-2.0 */
  3. #ifndef __OS_HEADER_H
  4. #define __OS_HEADER_H
  5. #include <stdint.h>
  6. #include <stdbool.h>
  7. #include <stddef.h>
  8. #include <assert.h>
  9. #include "rtthread.h"
  10. #include "rtdevice.h"
  11. #ifndef DEFINE_LOG_TAG
  12. #define DEFINE_LOG_TAG(sTr) static const char TAG[] = #sTr
  13. #endif
  14. #endif /*__OS_HEADER_H*/