13 lines
200 B
C
13 lines
200 B
C
/**
|
|
* @file
|
|
* @brief Mock file to allow test compilation.
|
|
* @author Marek Bel
|
|
*/
|
|
|
|
#ifndef TESTS_ARDUINO_H_
|
|
#define TESTS_ARDUINO_H_
|
|
|
|
extern unsigned long millis();
|
|
|
|
#endif /* TESTS_ARDUINO_H_ */
|