よくある質問
- M051 ベースシリーズ(95)
- M0518シリーズ(97)
- M0519シリーズ(43)
- M0564 シリーズ(1)
- ミニ 51 ベースシリーズ(90)
- ナノ 100/102 ベースシリーズ(101)
- Nano103 ベースシリーズ(10)
- ナノ 110/112 LCD シリーズ(100)
- ナノ 120 USB シリーズ(111)
- ナノ 130 アドバンストシリーズ(110)
- NUC029 シリーズ(94)
- NUC100/200 アドバンストシリーズ(102)
- NUC120/122/123/220 USB シリーズ(116)
- NUC121/125シリーズ(1)
- NUC126 USB シリーズ(2)
- NUC130/230 CAN シリーズ(103)
- NUC131/NUC1311 CAN シリーズ(98)
- NUC140/240 コネクティビティシリーズ(114)
よくある質問
Is there any difference between data address set for the PDMA controller of the NuMicro® NUC442/472 series and the data address set in other NuMicro® series? 日付:2016-07-01
When using the PDMA controller of the NuMicro® NUC442/472, the data address that needs to be set is the end address, rather than the starting address set in other series.
For example, when the starting address is 0x2000_0000 and the amount of transmission is 0x100, the end address is 0x2000_0100. In this case, when setting the data address for the NUC442/472 series, the user needs to set the end address 0x2000_0100; when setting the data address for the other series, the user needs to set the starting address 0x2000_0000.
The sample code regarding the PDMA in the NUC442/472 series is as follows:
u32EndSrc = (uint32_t)SrcArray + PDMA_TEST_LENGTH;
u32EndDst = (uint32_t)DestArray + PDMA_TEST_LENGTH;
PDMA_SetTransferAddr(2, u32EndSrc, PDMA_SAR_INC, u32EndDst, PDMA_DAR_INC);
| 製品: | マイクロコントローラ ,Arm Cortex-M4 MCU ,NUC442/472 シリーズ |
|---|---|
| アプリケーション: | |
| 機能: | Peripherals,Connectivity,DMA (PDMA) |