-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaux.h
More file actions
39 lines (32 loc) · 733 Bytes
/
aux.h
File metadata and controls
39 lines (32 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
******************************************************************************
* @file aux.h
* @author Paolo Sassi
* @date 10 February 2016
* @brief Application auxiliary functions header file.
******************************************************************************
*/
#ifndef AUX_H_
#define AUX_H_
/**
* @addtogroup auxiliary Auxiliary Functions
* @{
*/
/**
* @defgroup aux_exp_func Auxiliary Exported Functions
* @{
*/
uint8_t sonarInit();
void printString(uint16_t x, uint16_t y, uint8_t *s, sFONT *f);
void printAxis();
void printResults(uint16_t *buff);
void sleep(int32_t msec);
uint8_t cutOff(uint16_t *buff);
void filterSamples(uint16_t *buff);
/**
* @}
*/
/**
* @}
*/
#endif /* AUX_H_ */