24 lines
495 B
C
24 lines
495 B
C
/**
|
|
* @file test_cyclic_buffer.h
|
|
*
|
|
* @date Dec 8, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*/
|
|
|
|
#ifndef TEST_CYCLIC_BUFFER_H_
|
|
#define TEST_CYCLIC_BUFFER_H_
|
|
|
|
void testCrc(void);
|
|
void testMisc(void);
|
|
void testCyclicBuffer(void);
|
|
void testOverflow64Counter(void);
|
|
void testHistogram(void);
|
|
void testMalfunctionCentral(void);
|
|
void testConsoleLogic(void);
|
|
void testGpsParser(void);
|
|
void testFLStack(void);
|
|
void testMisc(void);
|
|
void testMenuTree(void);
|
|
|
|
#endif /* TEST_CYCLIC_BUFFER_H_ */
|