1# UsbSerial_Params 2 3 4## Overview 5 6Defines the USB serial port parameters for the USB Serial DDK. 7 8**Since**: 18 9 10**Related module**: [USB Serial DDK](_serial_ddk.md) 11 12 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| uint32_t [baudRate](#baudrate) | Baud rate.| 21| uint8_t [nDataBits](#ndatabits) | Number of data transfer bits.| 22| uint8_t [nStopBits](#nstopbits) | Number of data stop bits.| 23| uint8_t [parity](#parity) | Parity check settings.| 24 25 26## Member Variable Description 27 28 29### baudRate 30 31``` 32uint32_t UsbSerial_Params::baudRate 33``` 34 35**Description** 36 37Baud rate. 38 39 40### nDataBits 41 42``` 43uint8_t UsbSerial_Params::nDataBits 44``` 45 46**Description** 47 48Number of data transfer bits. 49 50 51### nStopBits 52 53``` 54uint8_t UsbSerial_Params::nStopBits 55``` 56 57**Description** 58 59Number of data stop bits. 60 61 62### parity 63 64``` 65uint8_t UsbSerial_Params::parity 66``` 67 68**Description** 69 70Parity check settings. 71