ISF  2.1
Intelligent Sensing Framework for Kinetis with Processor Expert
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
isf_uart_types.h
Go to the documentation of this file.
1 /*!
2 ********************************************************************************
3 * File: isf_uart_types.h
4 *
5 * Copyright (c) 2014, Freescale Semiconductor, Inc.
6 *
7 *******************************************************************************/
8 /*!
9 * @file isf_uart_types.h
10 * @brief \b isf_uart_types.h defines the uart protocol adapter structure and types.
11 */
12 #ifndef ISF_UART_TYPES_H_
13 #define ISF_UART_TYPES_H_
14 #include "isf_types.h"
15 #include "isf.h"
16 #include "fsl_uart_driver.h"
17 typedef struct uart_BusConfig_struct {
18  isf_duration_t timeout; /*!< The bus timeout value to use.*/
19  uart_user_config_t config; /*!< Uart configuration information.*/
21 
22 /*! @brief This structure defines the data bus handle. */
23 typedef struct uart_BusHandle_struct
24 {
25 
26  uart_state_t uartHandle; /*!< The uart current handle.*/
27  uint8 id; /*!< The unique ID associated with the bus handle. */
28  uint8 busState; /*!< The bus sate.*/
29  uart_BusConfig_t busConfig; /*!< current bus configuration.*/
31 
32 
33 #endif /* ISF_UART_TYPES_H_ */
34 
User configuration structure for UART driver.
unsigned char uint8
This defines uint8 as unsigned char.
Definition: isf_types.h:18
uart_state_t uartHandle
isf_duration_t timeout
This structure defines the data bus handle.
uart_BusConfig_t busConfig
struct uart_BusConfig_struct uart_BusConfig_t
fsl_uart_driver.h defines structures and types for the i2c master driver.
uart_user_config_t config
The isf_types.h file contains the ISF data type definitions and some of the globally used macros...
Runtime state of the UART driver.
struct uart_BusHandle_struct uart_busHandle_t
This structure defines the data bus handle.
uint32 isf_duration_t
ISF time duration in microseconds.
Definition: isf.h:59
Main ISF header file. Contains code common to all ISF components.