HomeSort by relevance Sort by last modified time
    Searched refs:baud (Results 1 - 12 of 12) sorted by null

  /hardware/broadcom/libbt/src/
userial_vendor.c 80 ** Description helper function converts USERIAL baud rates into TCIO
81 ** conforming baud rates
86 uint8_t userial_to_tcio_baud(uint8_t cfg_baud, uint32_t *baud)
89 *baud = B115200;
91 *baud = B4000000;
93 *baud = B3000000;
95 *baud = B2000000;
97 *baud = B1000000;
99 *baud = B921600;
101 *baud = B460800
193 uint32_t baud; local
    [all...]
hardware.c 131 uint8_t f_set_baud_2; /* Baud rate switch state */
346 ** Description helper function converts line speed number into USERIAL baud
349 ** Returns unit8_t (USERIAL baud symbol)
354 uint8_t baud; local
357 baud = USERIAL_BAUD_4M;
359 baud = USERIAL_BAUD_3M;
361 baud = USERIAL_BAUD_2M;
363 baud = USERIAL_BAUD_1M;
365 baud = USERIAL_BAUD_921600;
367 baud = USERIAL_BAUD_460800
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
userial_linux.c 176 UINT16 baud; member in struct:__anon28498
526 ** Description This function convert USERIAL baud to line speed.
533 UDRV_API extern UINT32 USERIAL_GetLineSpeed(UINT8 baud)
535 return (baud <= USERIAL_BAUD_4M) ?
536 userial_baud_tbl[baud-USERIAL_BAUD_300] : 0;
543 ** Description This function convert line speed to USERIAL baud.
863 ** Description helper function converts USERIAL baud rates into TCIO conforming baud rates
868 ** FALSE - unsupported baud rate, default of 115200 is used
871 BOOLEAN userial_to_tcio_baud(UINT8 cfg_baud, UINT32 * baud)
946 UINT32 baud = 0; local
    [all...]
HalAdaptation.cpp 193 cfg.baud = uart.m_iBaudrate;
195 ALOGD ("%s: uart config=0x%04x, %d\n", __func__, cfg.fmt, cfg.baud);
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
sermsdos.py 72 baudrate: baud rate
100 self.baud = BAUD_RATES[baudrate]
118 self._config(self.portstr, self.baud, self.parity,
127 def _config(self, port, baud, parity, data, stop, retry,
130 , " BAUD= ", baud, " PARITY= ", parity
195 , self.baud, self.parity, self.bytesize, self.stop,
  /hardware/broadcom/libbt/include/
userial_vendor.h 38 /**** baud rates ****/
99 uint8_t baud; /* Baud rate */ member in struct:__anon40127
156 ** Description Set new baud rate
  /external/libnfc-nci/halimpl/bcm2079x/include/
userial.h 55 /**** baud rates ****/
208 UINT8 baud; /* Baud rate */ member in struct:__anon28509
220 UINT8 baud; member in union:__anon28510
264 ** Description This function convert USERIAL baud to line speed.
271 UDRV_API extern UINT32 USERIAL_GetLineSpeed(UINT8 baud);
276 ** Description This function convert line speed to USERIAL baud.
  /external/libnfc-nci/src/udrv/include/
usb.h 41 /**** baud rates ****/
181 UINT8 baud; /* Baud rate */ member in struct:__anon29009
193 UINT8 baud; member in union:__anon29010
  /external/arduino/hardware/arduino/cores/arduino/
HardwareSerial.cpp 194 void HardwareSerial::begin(long baud)
203 if (baud == 57600) {
210 baud_setting = (F_CPU / 4 / baud - 1) / 2;
213 baud_setting = (F_CPU / 8 / baud - 1) / 2;
216 // assign the baud_setting, a.k.a. ubbr (USART Baud Rate Register)
  /external/libnfc-nci/halimpl/bcm2079x/hal/hal/
nfc_hal_main.c 39 USERIAL_BAUD_115200, /* Baud rate */
116 open_cfg.baud = nfc_hal_trans_cfg.userial_baud;
  /external/qemu/slirp/
debug.c 105 lprint(" %d baudrate\r\n", ttyp->baud);
  /external/qemu/slirp-android/
debug.c 104 lprint(" %d baudrate\r\n", ttyp->baud);

Completed in 2049 milliseconds