-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFramebuffer.ml
51 lines (47 loc) · 1.7 KB
/
Framebuffer.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
(* Framebuffer.ml - ocaml framebuffer interface
* Copyright (C) 2013 Goswin von Brederlow <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* Access to the Raspberry Pi framebuffer
*)
type result =
| SUCCESS
(* Error codes *)
| FAIL_GET_RESOLUTION
| FAIL_GOT_INVALID_RESOLUTION
| FAIL_SETUP_FRAMEBUFFER
| FAIL_INVALID_TAGS
| FAIL_INVALID_TAG_RESPONSE
| FAIL_INVALID_TAG_DATA
| FAIL_INVALID_PITCH_RESPONSE
| FAIL_INVALID_PITCH_DATA
let to_string = function
| SUCCESS -> "SUCCESS"
(* Error codes *)
| FAIL_GET_RESOLUTION -> "FAIL_GET_RESOLUTION"
| FAIL_GOT_INVALID_RESOLUTION -> "FAIL_GOT_INVALID_RESOLUTION"
| FAIL_SETUP_FRAMEBUFFER -> "FAIL_SETUP_FRAMEBUFFER"
| FAIL_INVALID_TAGS -> "FAIL_INVALID_TAGS"
| FAIL_INVALID_TAG_RESPONSE -> "FAIL_INVALID_TAG_RESPONSE"
| FAIL_INVALID_TAG_DATA -> "FAIL_INVALID_TAG_DATA"
| FAIL_INVALID_PITCH_RESPONSE -> "FAIL_INVALID_PITCH_RESPONSE"
| FAIL_INVALID_PITCH_DATA -> "FAIL_INVALID_PITCH_DATA"
external init : unit -> result = "ocaml_rpi__fb_init"
let () =
let res = init ()
in
Printf.printf "Framebuffer.init () -> %s\n%!" (to_string res)