esp_openthread_common_macro.h 411 B

1234567891011121314151617181920212223
  1. /*
  2. * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #define OT_PLAT_LOG_TAG "OPENTHREAD"
  8. #ifndef MS_PER_S
  9. #define MS_PER_S 1000
  10. #endif
  11. #ifndef US_PER_MS
  12. #define US_PER_MS 1000
  13. #endif
  14. #ifndef US_PER_S
  15. #define US_PER_S (MS_PER_S * US_PER_MS)
  16. #endif
  17. #define ESP_OPENTHREAD_UART_BUFFER_SIZE CONFIG_OPENTHREAD_UART_BUFFER_SIZE