Created
May 13, 2015 19:30
-
-
Save mgmarino/c3df49015824b4c9bc4e 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) // handle error | |
int32_t retVal = read_device( | |
dev, // Device | |
(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