OSDN Git Service

d5826be2eab04b876911caea242790e97cf070ba
[nxt-jsp/etrobo-atk.git] / nxtOSEK / lejos_nxj / src / nxtvm / platform / nxt / display.h
1 #ifndef __DISPLAY_H__
2 #  define __DISPLAY_H__
3
4 #  include "mytypes.h"
5
6 void display_init(void);
7
8 void display_update(void);
9
10 void display_clear(U32 updateToo);
11
12 void display_goto_xy(int x, int y);
13
14 void display_char(int c);
15
16 void display_string(const char *str);
17
18 void display_int(int val, U32 places);
19 void display_hex(U32 val, U32 places);
20
21 void display_unsigned(U32 val, U32 places);
22
23 void display_bitmap_copy(const U8 *data, U32 width, U32 depth, U32 x, U32 y);
24
25 void display_test(void);
26
27 U8 *display_get_buffer(void);
28
29 #endif