選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

77 行
3.2KB

  1. /* Audio Library for Teensy 3.X
  2. * Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com
  3. *
  4. * Development of this audio library was funded by PJRC.COM, LLC by sales of
  5. * Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop
  6. * open source software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #ifndef dma_chan_h_
  27. #define dma_chan_h_
  28. /*
  29. TODO: remove this file - made obsolete by DMAChannel.h
  30. #define DMA_ISR(ch) DMA_ISR_EXP(ch)
  31. #define DMA_ISR_EXP(ch) dma_ch ## ch ## _isr
  32. #define IRQ_DMA_CH(ch) IRQ_DMA_CH_EXP(ch)
  33. #define IRQ_DMA_CH_EXP(ch) IRQ_DMA_CH ## ch
  34. #define DMAMUX0_CHCFG(ch) DMAMUX0_CHCFG_EXP(ch)
  35. #define DMAMUX0_CHCFG_EXP(ch) DMAMUX0_CHCFG ## ch
  36. #define DMA_TCD_SADDR(ch) DMA_TCD_SADDR_EXP(ch)
  37. #define DMA_TCD_SADDR_EXP(ch) DMA_TCD ## ch ## _SADDR
  38. #define DMA_TCD_SOFF(ch) DMA_TCD_SOFF_EXP(ch)
  39. #define DMA_TCD_SOFF_EXP(ch) DMA_TCD ## ch ## _SOFF
  40. #define DMA_TCD_ATTR(ch) DMA_TCD_ATTR_EXP(ch)
  41. #define DMA_TCD_ATTR_EXP(ch) DMA_TCD ## ch ## _ATTR
  42. #define DMA_TCD_NBYTES_MLNO(ch) DMA_TCD_NBYTES_MLNO_EXP(ch)
  43. #define DMA_TCD_NBYTES_MLNO_EXP(ch) DMA_TCD ## ch ## _NBYTES_MLNO
  44. #define DMA_TCD_SLAST(ch) DMA_TCD_SLAST_EXP(ch)
  45. #define DMA_TCD_SLAST_EXP(ch) DMA_TCD ## ch ## _SLAST
  46. #define DMA_TCD_DADDR(ch) DMA_TCD_DADDR_EXP(ch)
  47. #define DMA_TCD_DADDR_EXP(ch) DMA_TCD ## ch ## _DADDR
  48. #define DMA_TCD_DOFF(ch) DMA_TCD_DOFF_EXP(ch)
  49. #define DMA_TCD_DOFF_EXP(ch) DMA_TCD ## ch ## _DOFF
  50. #define DMA_TCD_CITER_ELINKNO(ch) DMA_TCD_CITER_ELINKNO_EXP(ch)
  51. #define DMA_TCD_CITER_ELINKNO_EXP(ch) DMA_TCD ## ch ## _CITER_ELINKNO
  52. #define DMA_TCD_DLASTSGA(ch) DMA_TCD_DLASTSGA_EXP(ch)
  53. #define DMA_TCD_DLASTSGA_EXP(ch) DMA_TCD ## ch ## _DLASTSGA
  54. #define DMA_TCD_BITER_ELINKNO(ch) DMA_TCD_BITER_ELINKNO_EXP(ch)
  55. #define DMA_TCD_BITER_ELINKNO_EXP(ch) DMA_TCD ## ch ## _BITER_ELINKNO
  56. #define DMA_TCD_CSR(ch) DMA_TCD_CSR_EXP(ch)
  57. #define DMA_TCD_CSR_EXP(ch) DMA_TCD ## ch ## _CSR
  58. */
  59. #endif