mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 09:01:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			466 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			466 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: Apache-2.0
 | 
						|
 */
 | 
						|
 | 
						|
#include "esp_private/systimer.h"
 | 
						|
 | 
						|
/**
 | 
						|
 * @brief When systimer's clock source is XTAL (32MHz), it has a fixed fractional divider (2).
 | 
						|
 *        So the resolution of the systimer is 32MHz/2 = 16MHz.
 | 
						|
 */
 | 
						|
uint64_t systimer_ticks_to_us(uint64_t ticks)
 | 
						|
{
 | 
						|
    return ticks / 16;
 | 
						|
}
 | 
						|
 | 
						|
uint64_t systimer_us_to_ticks(uint64_t us)
 | 
						|
{
 | 
						|
    return us * 16;
 | 
						|
}
 |