blob: bf62d1a65b99dc71fe096c3f6f159730c2b5eeb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _AUX_H
#define _AUX_H
#include <stdint.h>
/**
* Auxiliary functions.
*/
void put_text(uint8_t x, uint8_t y, const uint8_t *text);
void wait_for(uint8_t frames);
#endif // _AUX_H
|