dw_gdma_hal.c 345 B

123456789101112131415
  1. /*
  2. * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <stdlib.h>
  7. #include <sys/param.h>
  8. #include "hal/dw_gdma_hal.h"
  9. #include "hal/dw_gdma_ll.h"
  10. void dw_gdma_hal_init(dw_gdma_hal_context_t *hal, const dw_gdma_hal_config_t *config)
  11. {
  12. hal->dev = DW_GDMA_LL_GET_HW();
  13. }