14 lines
215 B
C
14 lines
215 B
C
|
#ifndef __DEPTH_H
|
||
|
#define __DEPTH_H
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#define PILE_STATE_STOP 0x0100
|
||
|
#define PILE_STATE_PAUSE 0x0200
|
||
|
#define PILE_STATE_WORK 0x0300
|
||
|
|
||
|
extern depth_t *depth_data;
|
||
|
|
||
|
void zero_depth(void);
|
||
|
|
||
|
#endif
|