Created
May 13, 2015 15:14
-
-
Save mgmarino/148135d10787858320b2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Grab a DMA device | |
TUVMEDevice* dev = | |
get_dma_device(address,// address to begin read | |
DL710_AddressMod, // address modifier | |
DL710_DataSize, // data size | |
false // no auto-increment, always read from address! | |
); | |
if (!dev) throw ...; | |
int32_t retVal = dev->Read((char*)pData, // buffer | |
(uint32_t)numOfBytes, // number of bytes to read | |
0x0 // offset, should generally be 0! | |
); | |
// Be sure to release it back. | |
release_dma_device(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment