Seiji Ainoguchi / SerialFlash

Dependents:   SerialFlashTest

Fork of SerialFlash by Seiji Ainoguchi

Revision:
2:6f8ab876b516
Parent:
0:d0117f54a7ee
--- a/SST25Device.cpp	Wed Mar 02 00:28:03 2011 +0000
+++ b/SST25Device.cpp	Wed Mar 02 16:09:09 2011 +0000
@@ -2,14 +2,14 @@
 #include "SST25DeviceImpl.h"
 #include "SST25Device.h"
 
-bool SST25Device::IsSupported(ISPI* pSPI)
+bool SST25Device::IsSupported(ISPICommand* pSPICommand)
 {
-    return SST25DeviceImpl::IsSupported(pSPI);
+    return SST25DeviceImpl::IsSupported(pSPICommand);
 }
 
-SST25Device* SST25Device::Create(ISPI* pSPI)
+SST25Device* SST25Device::Create(ISPICommand* pSPICommand)
 {
-    SST25DeviceImpl* pImpl = SST25DeviceImpl::Create(pSPI);
+    SST25DeviceImpl* pImpl = SST25DeviceImpl::Create(pSPICommand);
     if (pImpl == NULL)
     {
         return NULL;