Searched refs:baud (Results 1 - 25 of 33) sorted by relevance

12

/hardware/qcom/bt/msm8909/libbt-vendor/src/
H A Dhci_uart.c65 ** Description helper function converts USERIAL baud rates into TCIO
66 ** conforming baud rates
71 uint8_t userial_to_tcio_baud(uint8_t cfg_baud, uint32_t *baud) argument
74 *baud = B115200;
76 *baud = B4000000;
78 *baud = B3000000;
80 *baud = B2000000;
82 *baud = B1000000;
84 *baud = B921600;
86 *baud
118 userial_tcio_baud_to_int(uint32_t baud) argument
228 uint32_t baud; local
[all...]
/hardware/qcom/bt/msm8992/libbt-vendor/src/
H A Dhci_uart.c66 ** Description helper function converts USERIAL baud rates into TCIO
67 ** conforming baud rates
72 uint8_t userial_to_tcio_baud(uint8_t cfg_baud, uint32_t *baud) argument
75 *baud = B115200;
77 *baud = B4000000;
79 *baud = B3000000;
81 *baud = B2000000;
83 *baud = B1000000;
85 *baud = B921600;
87 *baud
119 userial_tcio_baud_to_int(uint32_t baud) argument
229 uint32_t baud; local
[all...]
/hardware/qcom/bt/msm8996/libbt-vendor/src/
H A Dhci_uart.c66 ** Description helper function converts USERIAL baud rates into TCIO
67 ** conforming baud rates
72 uint8_t userial_to_tcio_baud(uint8_t cfg_baud, uint32_t *baud) argument
75 *baud = B115200;
77 *baud = B4000000;
79 *baud = B3000000;
81 *baud = B2000000;
83 *baud = B1000000;
85 *baud = B921600;
87 *baud
119 userial_tcio_baud_to_int(uint32_t baud) argument
229 uint32_t baud; local
[all...]
/hardware/broadcom/libbt/src/
H A Duserial_vendor.c81 ** Description helper function converts USERIAL baud rates into TCIO
82 ** conforming baud rates
87 uint8_t userial_to_tcio_baud(uint8_t cfg_baud, uint32_t *baud) argument
90 *baud = B115200;
92 *baud = B4000000;
94 *baud = B3000000;
96 *baud = B2000000;
98 *baud = B1000000;
100 *baud = B921600;
102 *baud
194 uint32_t baud; local
[all...]
H A Dhardware.c350 ** Description helper function converts line speed number into USERIAL baud
353 ** Returns unit8_t (USERIAL baud symbol)
358 uint8_t baud; local
361 baud = USERIAL_BAUD_4M;
363 baud = USERIAL_BAUD_3M;
365 baud = USERIAL_BAUD_2M;
367 baud = USERIAL_BAUD_1M;
369 baud = USERIAL_BAUD_921600;
371 baud = USERIAL_BAUD_460800;
373 baud
[all...]
/hardware/bsp/intel/peripheral/libupm/src/grovegprs/
H A Dgrovegprs.cxx70 mraa::Result GroveGPRS::setBaudRate(int baud) argument
72 return m_uart.setBaudRate(baud);
H A Dgrovegprs.h66 * It is connected via a UART at 19200 baud.
139 * Sets the baud rate for the device. The default is 19200.
141 * @param baud Desired baud rate.
144 mraa::Result setBaudRate(int baud=19200);
/hardware/bsp/intel/peripheral/libupm/src/hm11/
H A Dhm11.cxx140 bool HM11::setupTty(speed_t baud) argument
154 // set our baud rates
155 cfsetispeed(&termio, baud);
156 cfsetospeed(&termio, baud);
H A Dhm11.h75 * It is connected via a UART at 9,600 baud.
126 * Sets up proper tty I/O modes and the baud rate. For this device, the default
127 * baud rate is 9,600 (B9600).
129 * @param baud Desired baud rate.
132 bool setupTty(speed_t baud=B9600);
/hardware/bsp/intel/peripheral/libupm/src/ublox6/
H A Dublox6.cxx137 bool Ublox6::setupTty(speed_t baud) argument
151 // set our baud rates
152 cfsetispeed(&termio, baud);
153 cfsetospeed(&termio, baud);
H A Dublox6.h113 * Sets up proper tty I/O modes and the baud rate. The default
114 * baud rate is 9,600 (B9600).
116 * @param baud Desired baud rate
119 bool setupTty(speed_t baud=B9600);
/hardware/bsp/intel/peripheral/libupm/src/mhz16/
H A Dmhz16.cxx144 bool MHZ16::setupTty(speed_t baud) argument
158 // set our baud rates
159 cfsetispeed(&termio, baud);
160 cfsetospeed(&termio, baud);
H A Dmhz16.h121 * Sets up proper tty I/O modes and the baud rate. The default
122 * baud rate is 9,600 (B9600).
124 * @param baud Desired baud rate.
127 bool setupTty(speed_t baud=B9600);
/hardware/broadcom/libbt/include/
H A Duserial_vendor.h38 /**** baud rates ****/
99 uint8_t baud; /* Baud rate */ member in struct:__anon42
156 ** Description Set new baud rate
/hardware/bsp/intel/peripheral/libmraa/api/mraa/
H A Duart.h81 * @param baud unsigned int of baudrate i.e. 9600
84 mraa_result_t mraa_uart_set_baudrate(mraa_uart_context dev, unsigned int baud);
H A Duart.hpp186 * @param baud unsigned int of baudrate i.e. 9600
190 setBaudRate(unsigned int baud) argument
192 return (Result) mraa_uart_set_baudrate(m_uart, baud);
/hardware/bsp/intel/peripheral/libupm/src/grovescam/
H A Dgrovescam.h72 * It is connected via a UART at 115,200 baud.
132 * Sets up proper tty I/O modes and the baud rate. For this device, the default
133 * baud rate is 9,600 (B9600).
135 * @param baud Desired baud rate
138 bool setupTty(speed_t baud=B115200);
H A Dgrovescam.cxx156 bool GROVESCAM::setupTty(speed_t baud) argument
170 // set our baud rates
171 cfsetispeed(&termio, baud);
172 cfsetospeed(&termio, baud);
/hardware/bsp/intel/peripheral/libupm/src/hmtrp/
H A Dhmtrp.h89 SET_RF_DATARATE = 0xc3, // 1200-115200 (baud)
139 * Sets up proper tty I/O modes and the baud rate. The default
140 * baud rate is 9,600 (B9600).
142 * @param baud Desired baud rate.
145 bool setupTty(speed_t baud=B9600);
155 * Resets the device to default parameters, except for the UART baud rate
169 * @param uartBaud UART baud rate
188 * @param rate Radio transmission rate in baud (1,200-115,200)
220 * Sets the configured baud rat
[all...]
H A Dhmtrp.cxx146 bool HMTRP::setupTty(speed_t baud) argument
160 // set our baud rates
161 cfsetispeed(&termio, baud);
162 cfsetospeed(&termio, baud);
/hardware/bsp/intel/peripheral/libupm/src/sm130/
H A Dsm130.cxx56 mraa::Result SM130::setBaudRate(int baud) argument
58 m_baud = baud;
59 return m_uart.setBaudRate(baud);
728 bool SM130::setSM130BaudRate(int baud) argument
734 switch (baud)
748 ": Invalid SM130 baud rate specified");
753 m_baud = baud;
763 cerr << __FUNCTION__ << ": restoring old baud rate" << endl;
H A Dsm130.h172 * Sets the baud rate for the device. The default is 19200.
174 * @param baud Desired baud rate, default 19200
177 mraa::Result setBaudRate(int baud=19200);
345 * Changes the baud rate of the SM130. WARNING: This is a
361 * @param baud The new baud rate to set. Valid values are 9600,
365 bool setSM130BaudRate(int baud);
/hardware/qcom/bt/msm8909/libbt-vendor/include/
H A Dhci_uart.h26 /**** baud rates ****/
104 uint8_t baud; /* Baud rate */ member in struct:__anon2119
207 ** Description Set new baud rate
/hardware/qcom/bt/msm8992/libbt-vendor/include/
H A Dhci_uart.h26 /**** baud rates ****/
104 uint8_t baud; /* Baud rate */ member in struct:__anon2142
207 ** Description Set new baud rate
/hardware/qcom/bt/msm8996/libbt-vendor/include/
H A Dhci_uart.h26 /**** baud rates ****/
104 uint8_t baud; /* Baud rate */ member in struct:__anon2163
207 ** Description Set new baud rate

Completed in 2788 milliseconds

12