Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SerialFlash by
ISPICommand.h
- Committer:
- s_ain
- Date:
- 2011-03-02
- Revision:
- 2:6f8ab876b516
File content as of revision 2:6f8ab876b516:
#pragma once class ISPICommand { public: virtual ~ISPICommand() {} virtual void SetMaxFrequency(int frequency) = 0; virtual void Write(int command) = 0; virtual void Write(int command, const void* pParam, int length) = 0; virtual void Read(int command, void* pReaded, int readLength) = 0; virtual void Read(int command, const void* pParam, int paramLength, void* pReaded, int readLength) = 0; };