feat(soc): support esp32c5 eco2 soc

This commit is contained in:
laokaiyao
2025-04-17 11:14:50 +08:00
parent abe7680142
commit 849ff888b1
75 changed files with 57646 additions and 3387 deletions

View File

@@ -561,7 +561,7 @@ FORCE_INLINE_ATTR uint32_t uart_ll_get_intr_ena_status(uart_dev_t *hw)
FORCE_INLINE_ATTR void uart_ll_read_rxfifo(uart_dev_t *hw, uint8_t *buf, uint32_t rd_len)
{
for (int i = 0; i < (int)rd_len; i++) {
buf[i] = hw->fifo.rxfifo_rd_byte;
buf[i] = hw->fifo.val;
}
}