mirror of
https://github.com/preble/libpinproc
synced 2026-02-22 18:15:25 +01:00
Added public PRWriteData and PRReadData for low level debug
This commit is contained in:
@@ -115,9 +115,15 @@ PR_EXPORT PRResult PRReset(PRHandle handle, uint32_t resetFlags);
|
||||
|
||||
// I/O
|
||||
|
||||
/** Flush all pending write data out to the P-ROC */
|
||||
/** Flush all pending write data out to the P-ROC. */
|
||||
PR_EXPORT PRResult PRFlushWriteData(PRHandle handle);
|
||||
|
||||
/** Write data out to the P-ROC immediately (does not require a call to PRFlushWriteData). */
|
||||
PR_EXPORT PRResult PRWriteData(PRHandle handle, uint32_t moduleSelect, uint32_t startingAddr, int32_t numWriteWords, uint32_t * writeBuffer);
|
||||
|
||||
/** Read data from the P-ROC. */
|
||||
PR_EXPORT PRResult PRReadData(PRHandle handle, uint32_t moduleSelect, uint32_t startingAddr, int32_t numReadWords, uint32_t * readBuffer);
|
||||
|
||||
// Drivers
|
||||
/** @defgroup drivers Driver Manipulation
|
||||
* @{
|
||||
|
||||
Reference in New Issue
Block a user