gdma_periph.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // Copyright 2020 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #include "soc/gdma_periph.h"
  15. const gdma_signal_conn_t gdma_periph_signals = {
  16. .groups = {
  17. [0] = {
  18. .module = PERIPH_GDMA_MODULE,
  19. .pairs = {
  20. [0] = {
  21. .rx_irq_id = ETS_DMA_CH0_INTR_SOURCE,
  22. .tx_irq_id = ETS_DMA_CH0_INTR_SOURCE,
  23. },
  24. [1] = {
  25. .rx_irq_id = ETS_DMA_CH1_INTR_SOURCE,
  26. .tx_irq_id = ETS_DMA_CH1_INTR_SOURCE,
  27. },
  28. [2] = {
  29. .rx_irq_id = ETS_DMA_CH2_INTR_SOURCE,
  30. .tx_irq_id = ETS_DMA_CH2_INTR_SOURCE,
  31. }
  32. }
  33. }
  34. }
  35. };