| 12345678910111213141516171819 |
- // Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD
- /* SPDX-License-Identifier: GPL-2.0 OR Apache-2.0 */
- #ifndef __OS_HEADER_H
- #define __OS_HEADER_H
- #include <stdint.h>
- #include <stdbool.h>
- #include <stddef.h>
- #include <assert.h>
- #include "rtthread.h"
- #include "rtdevice.h"
- #ifndef DEFINE_LOG_TAG
- #define DEFINE_LOG_TAG(sTr) static const char TAG[] = #sTr
- #endif
- #endif /*__OS_HEADER_H*/
|