mirror of
https://github.com/greatscottgadgets/hackrf.git
synced 2026-03-06 23:39:56 +01:00
10 lines
224 B
C
10 lines
224 B
C
#ifndef __RAD1O_DRAW_H__
|
|
#define __RAD1O_DRAW_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
void rad1o_drawHLine(uint8_t y, uint8_t x1, uint8_t x2, uint8_t color);
|
|
void rad1o_drawVLine(uint8_t x, uint8_t y1, uint8_t y2, uint8_t color);
|
|
|
|
#endif
|