Main Page
+
Classes
Class List
+
Class Members
+
All
a
c
d
e
f
g
h
i
m
n
o
p
q
r
t
y
Functions
+
Variables
a
c
d
e
f
g
h
i
m
n
o
p
q
r
t
y
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
i
m
n
o
p
r
s
t
u
v
w
+
Functions
c
g
i
m
n
o
p
r
s
u
w
Variables
Typedefs
+
Macros
a
b
c
d
e
f
n
o
r
s
t
v
src
hcl_linux.c
Go to the documentation of this file.
1
//==============================================================================
2
//
3
// hcl_linux.c - Seiko Epson Hardware Control Library
4
//
5
// This layer of indirection is added to allow the sample code to call
6
// generic functions to work on linux-based hardware platforms.
7
//
8
//
9
// THE SOFTWARE IS RELEASED INTO THE PUBLIC DOMAIN.
10
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12
// NONINFRINGEMENT, SECURITY, SATISFACTORY QUALITY, AND FITNESS FOR A
13
// PARTICULAR PURPOSE. IN NO EVENT SHALL EPSON BE LIABLE FOR ANY LOSS, DAMAGE
14
// OR CLAIM, ARISING FROM OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF THE
15
// SOFTWARE.
16
//
17
//==============================================================================
18
#include <stdint.h>
19
#include <stdio.h>
20
#include <unistd.h>
21
22
#include "
hcl.h
"
23
24
/*****************************************************************************
25
** Function name: seInit
26
** Description: Initialize the Seiko Epson HCL libraries.
27
** Parameters: None
28
** Return value: 1=OK
29
*****************************************************************************/
30
int
seInit
(
void
) {
return
OK
; }
31
32
/*****************************************************************************
33
** Function name: seRelease
34
** Description: Release any resources held by this module.
35
** Parameters: None
36
** Return value: OK
37
*****************************************************************************/
38
int
seRelease
(
void
) {
return
OK
; }
39
40
/*****************************************************************************
41
** Function name: seDelayMS
42
** Description: Call this function to generate delay in milliseconds.
43
** Parameters: Time in milliseconds
44
** Return value: None
45
*****************************************************************************/
46
void
seDelayMS
(uint32_t millis) {
47
millis *= 1000;
48
usleep(millis);
49
}
50
51
/*****************************************************************************
52
** Function name: seDelayMicroSecs
53
** Description: Call this function to generate delay in microseconds.
54
** Parameters: Time in milliseconds
55
** Return value: None
56
*****************************************************************************/
57
void
seDelayMicroSecs
(uint32_t micros) { usleep(micros); }
seInit
int seInit(void)
Definition:
hcl_linux.c:30
OK
#define OK
Definition:
hcl.h:29
hcl.h
seRelease
int seRelease(void)
Definition:
hcl_linux.c:38
seDelayMS
void seDelayMS(uint32_t millis)
Definition:
hcl_linux.c:46
seDelayMicroSecs
void seDelayMicroSecs(uint32_t micros)
Definition:
hcl_linux.c:57
ess_imu_ros1_uart_driver
Author(s):
autogenerated on Sun Jun 4 2023 02:59:29