Questions tagged [baud-rate]

"baud-rate" refers to the number of signal or symbol changes that occur per unit time. This tag is for questions that get, set, or otherwise manipulate the baud rate.

In telecommunications and electronics, baud (/ˈbɔːd/, unit symbol "Bd") means symbols per second or pulses per second. A "symbol" being one of several voltage, frequency, or phase changes.

Thus a "baud-rate" refers to the number of signal or symbol changes that occur over time—most commonly per second. A baud rate differs from a bit-rate in that a single symbol transition (baud) can communicate more than one bit during the interval, whereas a bit rate is a single bit per interval.

This tag is OS and Language independent, as long as there's a mechanism for manipulating the serial data rate this tag can apply.

189 questions
0
votes
1 answer

How should items that function at different baud rates work together?

I've got an Arduino Uno which I'd like to setup to with a TTL Serial JPEG Camera for image capture and send that data using a GPRS shield. Currently I've got the two pieces of hardware working independently. The camera is taking and storing photos.…
propstm
  • 3,079
  • 5
  • 24
  • 39
0
votes
0 answers

Auto detecting Baud Rate of Arduino

I'm trying to detect baud rate of Arduino Mega2560 by using C#. My code is below: SerialPort SP=new SerialPort(); SP.BaudRate = 115200; BaudRate is specified as a constant like this, but I would like to automatically detect it. For instance, if…
Bhoke
  • 483
  • 4
  • 19
0
votes
0 answers

How are device and application baudrate related?

I have a Bluetooth port (port A) with baudrate set to 9600 according to Device Manager. Within an application, a SerialPort object is created with SerialPort.BaudRate set to 2048 to read data transmitted via the Bluetooth module. I would like to…
geft
  • 595
  • 5
  • 17
0
votes
1 answer

Atmega8 baud rate setting

I'm working with an ATMEGA8 chip which is part of a bigger board. I'm trying to set the correct baud rate but it seems it's not working. The ATMEGA8 uses an external crystal oscillator of 3.6864Mhz. To sed the baud rate I use the following lines, as…
Aldridge1991
  • 1,213
  • 4
  • 20
  • 45
0
votes
2 answers

Baud Rate Clock VHDL -- floating point exception error and/or style issues

I am trying to build a generic baud rate generator process for a uart transmitter. The transmitter works fine if I ignore the baud rate divider and pass in the clk signal in the sensitivity list. But I get errors (describe in code comments) if I…
user3120471
  • 23
  • 1
  • 2
  • 8
0
votes
0 answers

Serial port programming, baud rate related issue. port sending garbage for all baud rates except B38400

I am facing issue with serial port programming in linux. The port is able to read and write to anther hyperterminal for baud 38400. but when I try other baud rates, it fails to write and reads some garbage value. can anyone help me out. steps I…
iAmHari
  • 23
  • 3
0
votes
1 answer

PIC12LF1822 UART Programming with External Fosc

I am currently working with PIC12LF1822 a Microchip series Controller. In that I need to configure EUSART in 8-bit Asynchronous mode and pulse generation of 1MHZ using PWM... First I started with UART send and receive of data..But after setting…
0
votes
1 answer

Baud Rate Calculation

I have this 3-axis dongle serial accelerometer connected using RS-232 cable. I am putting the baud rate as 9600 and im getting 80 XXXX-YYYY-ZZZZ readout per second. I am trying to justify why does it shows 80 readings in a second, and here is my…
user3599795
  • 1
  • 1
  • 1
0
votes
1 answer

counting bits in a message sent over a serial port

I'm trying to figure out the bit rate of an attached serial device. I've configured the device to send binary data at a rate of 10Hz. My plan was to look at one message from the device, count the number of bits, and then multiply by 10 to get…
Matt
  • 4,095
  • 5
  • 35
  • 38
0
votes
1 answer

Issue with DESfire EV1 wrapped APDU for PPS command while using javax.smartcardio

I am writing a software in java, on the reader side, to communicate with a MiFare DESfire EV1 card. I am using for this javax.smartcardio. I managed to create a channel and send wrapped APDU of native DESfire commands. For example I managed to read…
Saralou
  • 63
  • 4
0
votes
4 answers

How to set a baud rate to 10400

Is it possible to set the baud rate to 10400? (Using .Net)
ajax
  • 1
  • 1
  • 1
0
votes
1 answer

Struggling With Arduino

I am enjoying programming in Visual Studio 2012 Express with the C# language, and have purchased an Arduino Uno. I have read a couple of tutorials on how to get Visual Studio to work the Uno directly, but ones like this article have lines in it such…
The Woo
  • 14,849
  • 26
  • 52
  • 68
0
votes
1 answer

Should Serial communication occur at standard Baud Rates?

I am interfacing an ATMega8 microcontroller to my PC using a serial to USB converter. The program I use to receive data is MATLAB. Is it strictly necessary for me to send and receive data in standard baud rates for serial communication? Would it be…
Analon
  • 111
  • 1
  • 2
  • 8
0
votes
1 answer

Baud rate setting for UART in LPC1788

I am working with UART of lPC1788,in that I did the following settings for PCLK as 12MHZ and baud rate as 115200 but while I am simulating this code the baud rate is not assigned as 115200 or approx. uint32_t uart0_init() { LPC_SC->PCONP…
0
votes
4 answers

stm32f4 uart baud-rate setting?

Now I have a stm32f4-discovery. I make a max232 for uart to connect stm32f4. And I use usb-rs232 to connect max232. I hope I can communicate stm32f4 and PC through uart. And I open putty in Linux. But I have a big problem about setting uart…
aaa SA
  • 311
  • 1
  • 4
  • 15
1 2 3
12
13