aboutsummaryrefslogtreecommitdiff
path: root/src/include/reset.h
blob: fd78189b17dc68ceead53e96c07253bfd13f3210 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef RESET_H
#define RESET_H

#if CONFIG_HAVE_HARD_RESET == 1
void hard_reset(void);
#else
#define hard_reset() do {} while(0)
#endif
void soft_reset(void);

#endif