-
Notifications
You must be signed in to change notification settings - Fork 556
/
hello_rust_main.rs
117 lines (92 loc) · 3.97 KB
/
hello_rust_main.rs
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/****************************************************************************
* apps/examples/hello_rust/hello_rust_main.rs
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Attributes
****************************************************************************/
#![no_main]
#![no_std]
/****************************************************************************
* Uses
****************************************************************************/
use core::panic::PanicInfo;
/****************************************************************************
* Externs
****************************************************************************/
extern "C" {
pub fn printf(format: *const u8, ...) -> i32;
pub fn open(path: *const u8, oflag: i32, ...) -> i32;
pub fn close(fd: i32) -> i32;
pub fn ioctl(fd: i32, request: i32, ...) -> i32;
pub fn usleep(usec: u32) -> u32;
}
/****************************************************************************
* Constants
****************************************************************************/
pub const O_WRONLY: i32 = 1 << 1;
pub const ULEDIOC_SETALL: i32 = 0x1d03;
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Panic Handler (needed for [no_std] compilation)
****************************************************************************/
#[panic_handler]
fn panic(_panic: &PanicInfo<'_>) -> ! {
loop {}
}
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* hello_rust_main
****************************************************************************/
#[no_mangle]
pub extern "C" fn hello_rust_main(_argc: i32, _argv: *const *const u8) -> i32 {
unsafe {
/* "Hello, Rust!!" using printf() from libc */
printf(b"Hello, Rust!!\n\0" as *const u8);
/* Blink LED 1 using ioctl() from NuttX */
printf(b"Opening /dev/userleds\n\0" as *const u8);
let fd = open(b"/dev/userleds\0" as *const u8, O_WRONLY);
if fd < 0 {
printf(b"Unable to open /dev/userleds, skipping the blinking\n\0" as *const u8);
return 1;
}
printf(b"Set LED 1 to 1\n\0" as *const u8);
let ret = ioctl(fd, ULEDIOC_SETALL, 1);
if ret < 0 {
printf(b"ERROR: ioctl(ULEDIOC_SETALL) failed\n\0" as *const u8);
close(fd);
return 1;
}
printf(b"Sleeping...\n\0" as *const u8);
usleep(500_000);
printf(b"Set LED 1 to 0\n\0" as *const u8);
let ret = ioctl(fd, ULEDIOC_SETALL, 0);
if ret < 0 {
printf(b"ERROR: ioctl(ULEDIOC_SETALL) failed\n\0" as *const u8);
close(fd);
return 1;
}
close(fd);
}
/* Exit with status 0 */
0
}