12 lines
159 B
C
12 lines
159 B
C
|
#ifndef PART_HARD_RESET_H
|
||
|
#define PART_HARD_RESET_H
|
||
|
|
||
|
#if HAVE_HARD_RESET == 1
|
||
|
void hard_reset(void);
|
||
|
#else
|
||
|
#define hard_reset() do {} while(0)
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|