mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
85 lines
1.6 KiB
C
85 lines
1.6 KiB
C
|
/*
|
||
|
* 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
|