esp-idf/components/soc/dport_access_common.c

19 wiersze
503 B
C
Czysty Zwykły widok Historia

/*
2022-01-18 02:32:56 +00:00
* 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)
{
2022-04-28 09:44:59 +00:00
DPORT_INTERRUPT_DISABLE();
for (uint32_t i = 0; i < num_words; ++i) {
buff_out[i] = DPORT_SEQUENCE_REG_READ(address + i * 4);
}
2022-04-28 09:44:59 +00:00
DPORT_INTERRUPT_RESTORE();
}