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); }
int seInit(void)
Definition: hcl_linux.c:30
#define OK
Definition: hcl.h:29
int seRelease(void)
Definition: hcl_linux.c:38
void seDelayMS(uint32_t millis)
Definition: hcl_linux.c:46
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