| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /*
- * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #pragma once
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "esp_log.h"
- #include "esp_err.h"
- /**
- * @brief Start the IEEE802154 MAC internal timer0.
- *
- */
- void ieee802154_timer0_start(void);
- /**
- * @brief Stop the IEEE802154 MAC internal timer0.
- *
- */
- void ieee802154_timer0_stop(void);
- /**
- * @brief Set the overflow threshold to the IEEE802154 MAC internal timer0.
- *
- * @param[in] value The threshold.
- *
- * @return
- * ESP_OK if the threshold is valid.
- * ESP_ERR_INVALID_ARG if the threshold is invalid.
- *
- */
- esp_err_t ieee802154_timer0_set_threshold(uint32_t value);
- /**
- * @brief Get the current IEEE802154 MAC internal timer0 count.
- *
- * @return
- * The timer0 count.
- *
- */
- uint32_t ieee802154_timer0_get_value(void);
- /**
- * @brief Start the IEEE802154 MAC internal timer1.
- *
- */
- void ieee802154_timer1_start(void);
- /**
- * @brief Stop the IEEE802154 MAC internal timer1.
- *
- */
- void ieee802154_timer1_stop(void);
- /**
- * @brief Set the overflow threshold to the IEEE802154 MAC internal timer1.
- *
- * @param[in] value The threshold.
- *
- * @return
- * ESP_OK if the threshold is valid.
- * ESP_ERR_INVALID_ARG if the threshold is invalid.
- *
- */
- esp_err_t ieee802154_timer1_set_threshold(uint32_t value);
- /**
- * @brief Get the current IEEE802154 MAC internal timer1 count.
- *
- * @return
- * The timer1 count.
- *
- */
- uint32_t ieee802154_timer1_get_value(void);
- #ifdef __cplusplus
- }
- #endif
|