From 528d3b4842c7d7c6e9c4e2f64c34fa825ff9e45f Mon Sep 17 00:00:00 2001 From: gstellenberg Date: Fri, 29 May 2009 12:14:51 -0500 Subject: [PATCH] Made FlushWriteData public. --- src/PRDevice.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/PRDevice.h b/src/PRDevice.h index 4099c23..d6cfb0a 100644 --- a/src/PRDevice.h +++ b/src/PRDevice.h @@ -53,6 +53,8 @@ public: // public libpinproc API: int GetEvents(PREvent *events, int maxEvents); + PRResult FlushWriteData(); + PRResult DriverUpdateGlobalConfig(PRDriverGlobalConfig *driverGlobalConfig); PRResult DriverGetGroupConfig(uint8_t groupNum, PRDriverGroupConfig *driverGroupConfig); PRResult DriverUpdateGroupConfig(PRDriverGroupConfig *driverGroupConfig); @@ -82,9 +84,6 @@ protected: /** Schedules data to be written to the P-ROC. */ PRResult PrepareWriteData(uint32_t * buffer, int32_t numWords); - /** Initiates a burst write of all data scheduled to be written to the P-ROC. */ - PRResult FlushWriteData(); - /** Writes data to P-ROC. * Returns #kPFailure if the number of words read does not match the number requested. */