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.
16 lines
303 B
16 lines
303 B
|
15 years ago
|
#ifndef __OFFSET_H
|
||
|
|
#define __OFFSET_H
|
||
|
|
|
||
|
|
#include "main.h"
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
extern int16_t offset_measure[4];
|
||
|
|
extern int16_t offset_count[4];
|
||
|
|
extern int16_t offset_val[4];
|
||
|
|
extern int16_t offsets[4];
|
||
|
|
|
||
|
|
int16_t offset_measure_start(int16_t channel);
|
||
|
|
int16_t offset_measure_stop(int16_t channel);
|
||
|
|
|
||
|
|
#endif
|