mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 09:01:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			503 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			503 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-FileCopyrightText: 2010-2022 Espressif Systems (Shanghai) CO LTD
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: Apache-2.0
 | 
						|
 */
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include "soc/dport_access.h"
 | 
						|
 | 
						|
// Read a sequence of DPORT registers to the buffer.
 | 
						|
void esp_dport_access_read_buffer(uint32_t *buff_out, uint32_t address, uint32_t num_words)
 | 
						|
{
 | 
						|
    DPORT_INTERRUPT_DISABLE();
 | 
						|
    for (uint32_t i = 0;  i < num_words; ++i) {
 | 
						|
        buff_out[i] = DPORT_SEQUENCE_REG_READ(address + i * 4);
 | 
						|
    }
 | 
						|
    DPORT_INTERRUPT_RESTORE();
 | 
						|
}
 |