Lines Matching full:baudrate

302 	payload.baudrate = target_baudrate;  in ubx_m8_ubx_cfg_prt_set()
311 /* Returns failure if "target_baudrate" is different than device's currently set baudrate, in ubx_m8_ubx_cfg_prt_set()
312 * because the device will change its baudrate and respond with UBX-ACK with new baudrate, in ubx_m8_ubx_cfg_prt_set()
313 * which we will miss. Hence, we need to change uart's baudrate after sending the frame in ubx_m8_ubx_cfg_prt_set()
360 static int ubx_m8_set_uart_baudrate(const struct device *dev, uint32_t baudrate) in ubx_m8_set_uart_baudrate() argument
379 uart_cfg.baudrate = baudrate; in ubx_m8_set_uart_baudrate()
391 static bool ubx_m8_validate_baudrate(const struct device *dev, uint32_t baudrate) in ubx_m8_validate_baudrate() argument
394 if (baudrate == ubx_baudrate[i]) { in ubx_m8_validate_baudrate()
402 /* This function will return failure if "target_baudrate" != device's current baudrate.
418 * know the currently set baudrate of the device. We will match the baudrate in one of the in ubx_m8_configure_gnss_device_baudrate_prerequisite()
419 * following attempts and the device will thus change its baudrate to "target_baudrate". in ubx_m8_configure_gnss_device_baudrate_prerequisite()
422 /* Set baudrate of UART pipe as ubx_baudrate[i]. */ in ubx_m8_configure_gnss_device_baudrate_prerequisite()
428 /* Try setting baudrate of device as target_baudrate. */ in ubx_m8_configure_gnss_device_baudrate_prerequisite()
435 /* Reset baudrate of UART pipe as target_baudrate. */ in ubx_m8_configure_gnss_device_baudrate_prerequisite()
947 LOG_ERR("Configuring baudrate failed. Returned %d.", ret); in ubx_m8_configure()