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