-
Notifications
You must be signed in to change notification settings - Fork 1
/
cllc_linux.h
60 lines (48 loc) · 1.73 KB
/
cllc_linux.h
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
/******************************************************************************
@file cllc_linux.h
@brief Linux Specific Coordinator Logical Link Controller
Group: CMCU LPC
$Target Device: DEVICES $
******************************************************************************
$License: BSD3 2019 $
******************************************************************************
$Release Name: PACKAGE NAME $
$Release Date: PACKAGE RELEASE DATE $
*****************************************************************************/
#ifndef CLLC_LINUX_H
#define CLLC_LINUX_H
#ifdef __cplusplus
extern "C"
{
#endif
/******************************************************************************
Includes
*****************************************************************************/
#include "ti_154stack_config.h"
/******************************************************************************
Function Prototypes
*****************************************************************************/
/*!
* @brief Linux specific cllc initialization
*/
extern void CLLC_LINUX_init(uint8_t *chanMask, uint16_t *shortAddr,
uint32_t *fhPAtrickleTime, uint32_t *fhPCtrickleTime);
//*****************************************************************************
//*****************************************************************************
#ifdef __cplusplus
}
#endif
#endif /* CLLC_LINUX_H */
/*
* ========================================
* Texas Instruments Micro Controller Style
* ========================================
* Local Variables:
* mode: c
* c-file-style: "bsd"
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
* vim:set filetype=c tabstop=4 shiftwidth=4 expandtab=true
*/