EA DOGM128 Driver  0.1
Driver code for the EA DOGM128
 All Files Functions Typedefs Enumerations Groups Pages
DOGM128_lines.h
Go to the documentation of this file.
1 
16 /* Used to prevent multiple inclusion of the header file */
17 #ifndef DOGM128_LINES_H
18 #define DOGM128_LINES_H
19 
20 /*----------------------------------------------------------------------------*/
21 /* INCLUDES */
22 /*----------------------------------------------------------------------------*/
23 #include "DOGM128_common.h"
24 
25 /*----------------------------------------------------------------------------*/
26 /* FUNCTIONS */
27 /*----------------------------------------------------------------------------*/
50 void dog_draw_line(uint8_t x1,
51  uint8_t y1,
52  uint8_t x2,
53  uint8_t y2,
54  uint8_t size,
55  char mode);
56 
79 void dog_draw_h_line(uint8_t x1,
80  uint8_t x2,
81  uint8_t y,
82  uint8_t size,
83  char mode);
84 
106 void dog_draw_v_line(uint8_t x,
107  uint8_t y1,
108  uint8_t y2,
109  uint8_t size,
110  char mode);
111 
112 #endif /* DOGM128_LINES_H */ /* DOGM128_lines */
void dog_draw_v_line(uint8_t x, uint8_t y1, uint8_t y2, uint8_t size, char mode)
Definition: DOGM128_lines.c:113
Header file containing common macros, typedefs, and function prototypes which belong in no particular...
unsigned char uint8_t
Definition: DOGM128_common.h:108
void dog_draw_h_line(uint8_t x1, uint8_t x2, uint8_t y, uint8_t size, char mode)
Definition: DOGM128_lines.c:89
void dog_draw_line(uint8_t x1, uint8_t y1, uint8_t x2, uint8_t y2, uint8_t size, char mode)
Definition: DOGM128_lines.c:25