mirror of https://github.com/lumapu/ahoy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
561 B
18 lines
561 B
1 year ago
|
//-----------------------------------------------------------------------------
|
||
|
// 2023 Ahoy, https://www.mikrocontroller.net/topic/525778
|
||
|
// Creative Commons - http://creativecommons.org/licenses/by-nc-sa/3.0/de/
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef __SPI_PATCHER_HANDLE_H__
|
||
|
#define __SPI_PATCHER_HANDLE_H__
|
||
|
#pragma once
|
||
|
|
||
|
class SpiPatcherHandle {
|
||
|
public:
|
||
|
virtual ~SpiPatcherHandle() {}
|
||
|
virtual void patch() = 0;
|
||
|
virtual void unpatch() = 0;
|
||
|
};
|
||
|
|
||
|
#endif /*__SPI_PATCHER_HANDLE_H__*/
|