mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-06-01 22:40:13 +02:00
17 lines
188 B
C++
17 lines
188 B
C++
#ifndef BKP_H
|
|
#define BKP_H
|
|
|
|
#include "hw.h"
|
|
#include "common.h"
|
|
|
|
class Bkp
|
|
{
|
|
public:
|
|
Bkp(); // do not implement
|
|
|
|
static void init();
|
|
static void reset();
|
|
};
|
|
|
|
#endif // BKP_H
|