Searched defs:baud (Results 1 - 4 of 4) sorted by relevance

/external/arduino/hardware/arduino/cores/arduino/
H A DHardwareSerial.cpp194 void HardwareSerial::begin(long baud) argument
203 if (baud == 57600) {
210 baud_setting = (F_CPU / 4 / baud - 1) / 2;
213 baud_setting = (F_CPU / 8 / baud - 1) / 2;
/external/libnfc-nci/halimpl/bcm2079x/include/
H A Duserial.h55 /**** baud rates ****/
208 UINT8 baud; /* Baud rate */ member in struct:__anon23891
220 UINT8 baud; member in union:__anon23892
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/
H A Dusb.h41 /**** baud rates ****/
181 UINT8 baud; /* Baud rate */ member in struct:__anon24398
193 UINT8 baud; member in union:__anon24399
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Duserial_linux.c176 UINT16 baud; member in struct:__anon23880
526 ** Description This function convert USERIAL baud to line speed.
533 UDRV_API extern UINT32 USERIAL_GetLineSpeed(UINT8 baud) argument
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) argument
946 UINT32 baud = 0; local
1291 userial_change_rate(UINT8 baud) argument
[all...]

Completed in 1770 milliseconds