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