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.
17 lines
561 B
17 lines
561 B
//-----------------------------------------------------------------------------
|
|
// 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__*/
|
|
|