TI-RTOS for SimpleLink Wireless MCUs  2.14.03.28
UART.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015, Texas Instruments Incorporated
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
136 #ifndef ti_drivers_UART__include
137 #define ti_drivers_UART__include
138 
139 #ifdef __cplusplus
140 extern "C" {
141 #endif
142 
143 #include <stdint.h>
144 #include <stddef.h>
145 
157 #define UART_CMD_RESERVED 32
158 
171 #define UART_STATUS_RESERVED -32
172 
179 #define UART_STATUS_SUCCESS 0
180 
187 #define UART_STATUS_ERROR -1
188 
196 #define UART_STATUS_UNDEFINEDCMD -2
197 
206 #define UART_CMD_PEEK 0
207 
217 #define UART_CMD_ISAVAILABLE 1
218 
228 #define UART_CMD_GETRXCOUNT 2
229 
240 #define UART_CMD_RXENABLE 3
241 
253 #define UART_CMD_RXDISABLE 4
254 
255 #define UART_ERROR UART_STATUS_ERROR
256 
260 #define UART_WAIT_FOREVER (~0)
261 
265 typedef struct UART_Config *UART_Handle;
266 
284 typedef void (*UART_Callback) (UART_Handle, void *buf, size_t count);
285 
291 typedef enum UART_Mode {
297 
304 } UART_Mode;
305 
324 typedef enum UART_ReturnMode {
327 
331 
339 typedef enum UART_DataMode {
342 } UART_DataMode;
343 
357 typedef enum UART_Echo {
360 } UART_Echo;
361 
367 typedef enum UART_LEN {
372 } UART_LEN;
373 
379 typedef enum UART_STOP {
382 } UART_STOP;
383 
389 typedef enum UART_PAR {
395 } UART_PAR;
396 
405 typedef struct UART_Params {
408  unsigned int readTimeout;
409  unsigned int writeTimeout;
416  uint32_t baudRate;
420  void *custom;
422 } UART_Params;
423 
428 typedef void (*UART_CloseFxn) (UART_Handle handle);
429 
434 typedef int (*UART_ControlFxn) (UART_Handle handle,
435  unsigned int cmd,
436  void *arg);
437 
442 typedef void (*UART_InitFxn) (UART_Handle handle);
443 
448 typedef UART_Handle (*UART_OpenFxn) (UART_Handle handle,
449  UART_Params *params);
454 typedef int (*UART_ReadFxn) (UART_Handle handle, void *buffer,
455  size_t size);
456 
461 typedef int (*UART_ReadPollingFxn) (UART_Handle handle, void *buffer,
462  size_t size);
463 
468 typedef void (*UART_ReadCancelFxn) (UART_Handle handle);
469 
474 typedef int (*UART_WriteFxn) (UART_Handle handle,
475  const void *buffer,
476  size_t size);
477 
482 typedef int (*UART_WritePollingFxn) (UART_Handle handle,
483  const void *buffer,
484  size_t size);
485 
490 typedef void (*UART_WriteCancelFxn) (UART_Handle handle);
491 
497 typedef struct UART_FxnTable {
500 
503 
506 
509 
512 
515 
518 
521 
524 
527 } UART_FxnTable;
528 
540 typedef struct UART_Config {
543 
545  void *object;
546 
548  void const *hwAttrs;
549 } UART_Config;
550 
560 extern void UART_close(UART_Handle handle);
561 
581 extern int UART_control(UART_Handle handle, unsigned int cmd, void *arg);
582 
590 extern void UART_init(void);
591 
613 extern UART_Handle UART_open(unsigned int index, UART_Params *params);
614 
637 extern void UART_Params_init(UART_Params *params);
638 
670 extern int UART_write(UART_Handle handle, const void *buffer, size_t size);
671 
695 extern int UART_writePolling(UART_Handle handle, const void *buffer,
696  size_t size);
697 
706 extern void UART_writeCancel(UART_Handle handle);
707 
736 extern int UART_read(UART_Handle handle, void *buffer, size_t size);
737 
758 extern int UART_readPolling(UART_Handle handle, void *buffer, size_t size);
759 
768 extern void UART_readCancel(UART_Handle handle);
769 
770 #ifdef __cplusplus
771 }
772 #endif
773 
774 #endif /* ti_drivers_UART__include */
struct UART_Params UART_Params
UART Parameters.
Definition: UART.h:390
UART_STOP
UART stop bit settings.
Definition: UART.h:379
struct UART_Config UART_Config
UART Global configuration.
void(* UART_CloseFxn)(UART_Handle handle)
A function pointer to a driver specific implementation of UART_CloseFxn().
Definition: UART.h:428
UART_Callback writeCallback
Definition: UART.h:411
int(* UART_ReadFxn)(UART_Handle handle, void *buffer, size_t size)
A function pointer to a driver specific implementation of UART_ReadFxn().
Definition: UART.h:454
void const * hwAttrs
Definition: UART.h:548
Definition: UART.h:303
UART_LEN dataLength
Definition: UART.h:417
Definition: UART.h:392
The definition of a UART function table that contains the required set of functions to control a spec...
Definition: UART.h:497
Definition: UART.h:371
UART_Callback readCallback
Definition: UART.h:410
int UART_writePolling(UART_Handle handle, const void *buffer, size_t size)
Function that writes data to a UART, polling the peripheral to wait until new data can be written...
UART_PAR
UART parity type settings.
Definition: UART.h:389
Definition: UART.h:358
unsigned int writeTimeout
Definition: UART.h:409
UART_ControlFxn controlFxn
Definition: UART.h:502
UART_Mode
UART mode settings.
Definition: UART.h:291
Definition: UART.h:394
Definition: UART.h:341
UART_Handle UART_open(unsigned int index, UART_Params *params)
Function to initialize a given UART peripheral.
UART_PAR parityType
Definition: UART.h:419
UART_DataMode
UART data mode settings.
Definition: UART.h:339
UART_Echo readEcho
Definition: UART.h:415
UART_ReturnMode
UART return mode settings.
Definition: UART.h:324
UART_WritePollingFxn writePollingFxn
Definition: UART.h:523
struct UART_Config * UART_Handle
A handle that is returned from a UART_open() call.
Definition: UART.h:265
struct UART_FxnTable UART_FxnTable
The definition of a UART function table that contains the required set of functions to control a spec...
void UART_close(UART_Handle handle)
Function to close a UART peripheral specified by the UART handle.
Definition: UART.h:296
void UART_readCancel(UART_Handle handle)
Function that cancels a UART_read() function call.
UART_Echo
UART echo settings.
Definition: UART.h:357
int(* UART_ReadPollingFxn)(UART_Handle handle, void *buffer, size_t size)
A function pointer to a driver specific implementation of UART_ReadPollingFxn().
Definition: UART.h:461
int UART_read(UART_Handle handle, void *buffer, size_t size)
Function that reads data from a UART with interrupt enabled. This API must be used mutually exclusive...
Definition: UART.h:380
UART_Mode writeMode
Definition: UART.h:407
int(* UART_ControlFxn)(UART_Handle handle, unsigned int cmd, void *arg)
A function pointer to a driver specific implementation of UART_ControlFxn().
Definition: UART.h:434
UART_STOP stopBits
Definition: UART.h:418
UART_ReturnMode readReturnMode
Definition: UART.h:412
UART_CloseFxn closeFxn
Definition: UART.h:499
Definition: UART.h:329
void UART_init(void)
Function to initialize the UART module.
int UART_control(UART_Handle handle, unsigned int cmd, void *arg)
Function performs implementation specific features on a given UART_Handle.
uint32_t baudRate
Definition: UART.h:416
UART_Handle(* UART_OpenFxn)(UART_Handle handle, UART_Params *params)
A function pointer to a driver specific implementation of UART_OpenFxn().
Definition: UART.h:448
int(* UART_WriteFxn)(UART_Handle handle, const void *buffer, size_t size)
A function pointer to a driver specific implementation of UART_WriteFxn().
Definition: UART.h:474
Definition: UART.h:340
Definition: UART.h:393
void UART_Params_init(UART_Params *params)
Function to initialize the UART_Params struct to its defaults.
void UART_writeCancel(UART_Handle handle)
Function that cancels a UART_write() function call.
Definition: UART.h:368
Definition: UART.h:369
UART_DataMode readDataMode
Definition: UART.h:413
UART_WriteCancelFxn writeCancelFxn
Definition: UART.h:526
Definition: UART.h:359
Definition: UART.h:381
void(* UART_InitFxn)(UART_Handle handle)
A function pointer to a driver specific implementation of UART_InitFxn().
Definition: UART.h:442
Definition: UART.h:370
UART_ReadPollingFxn readPollingFxn
Definition: UART.h:514
void(* UART_Callback)(UART_Handle, void *buf, size_t count)
The definition of a callback function used by the UART driver when used in UART_MODE_CALLBACK The cal...
Definition: UART.h:284
Definition: UART.h:391
unsigned int readTimeout
Definition: UART.h:408
UART_ReadCancelFxn readCancelFxn
Definition: UART.h:517
int UART_readPolling(UART_Handle handle, void *buffer, size_t size)
Function that reads data from a UART without interrupts. This API must be used mutually exclusive wit...
UART_LEN
UART data length settings.
Definition: UART.h:367
void * custom
Definition: UART.h:420
void(* UART_ReadCancelFxn)(UART_Handle handle)
A function pointer to a driver specific implementation of UART_ReadCancelFxn().
Definition: UART.h:468
UART Parameters.
Definition: UART.h:405
UART_FxnTable const * fxnTablePtr
Definition: UART.h:542
UART_ReadFxn readFxn
Definition: UART.h:511
UART_OpenFxn openFxn
Definition: UART.h:508
void(* UART_WriteCancelFxn)(UART_Handle handle)
A function pointer to a driver specific implementation of UART_WriteCancelFxn().
Definition: UART.h:490
Definition: UART.h:326
UART_DataMode writeDataMode
Definition: UART.h:414
UART_Mode readMode
Definition: UART.h:406
UART_WriteFxn writeFxn
Definition: UART.h:520
int(* UART_WritePollingFxn)(UART_Handle handle, const void *buffer, size_t size)
A function pointer to a driver specific implementation of UART_WritePollingFxn(). ...
Definition: UART.h:482
void * object
Definition: UART.h:545
UART Global configuration.
Definition: UART.h:540
UART_InitFxn initFxn
Definition: UART.h:505
int UART_write(UART_Handle handle, const void *buffer, size_t size)
Function that writes data to a UART with interrupts enabled. Usage of this API is mutually exclusive ...
Copyright 2015, Texas Instruments Incorporated