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. However, if only two symbols are defined for some system, e.g. "0" and "1", then the baud/bit rates are synonymous.

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

211 questions
0
votes
1 answer

Arduino Uno serial monitor printing garbage

I am using an Arduino Uno and GSM sim800l for a project. It looks like something is wrong and I don't know what it is. Here is my code: #include AltSoftSerial altSerial; void setup() { Serial.begin(19200); …
Need2learn
  • 41
  • 1
  • 9
0
votes
1 answer

How to get a UART communication at 12 Mbps in linux (Raspbian)?

I am currently working on a Raspberry pi (Jessie Stretch), the issue is that I want to connect two FTDI FT2232H serially at 12 Mbps, but because 12Mbps is not a standard speed Raspbian does not allow me to add that baud rate. I would like to know if…
GerardoHdez
  • 1
  • 1
  • 3
0
votes
1 answer

Crackly audio when sending audio via bluetooth->arduino->DAC->3.5mm breakout board->headphones. Do not know the cause

I wrote a mix of python code and arduino code to make this work. I am sending an array of numbers (audio) to the HC-05 bluetooth module/arduino uno (these are both set to communicate via serial at 115200 baud, at least that is what I set for both…
user P520
  • 317
  • 2
  • 10
0
votes
1 answer

I2C and Serial communication between devices

I am using python sockets to connect to a bluetooth HC-05 module with my PC. I want to send music to the HC-05 by converting a wav file to a string array which will later by converted to integers ranging from 0-65535 on an arduino. The arduino and…
user P520
  • 317
  • 2
  • 10
0
votes
1 answer

How to set up the baud rate for i2c-bus in Linux?

I have an ARM-computer which is based on the riko-3288 processor. I also have the Ubuntu image for the device with a custom kernel (without the module system). I am currently trying to set a baud rate of up to 100KHz for the i2c-bus. I'm not an…
Riur
  • 1
  • 3
0
votes
2 answers

Uncommon baud rate on serial port - Linux

I'm currently trying to make a programm to read a serial port. On this port I receive data with a baud rate of 875000. It's really uncommon and I don't succeed to modified it. I've make a little C programm to do that but it didn't work with…
0
votes
0 answers

Set non-common BaudRate, MATLAB 2017 & termios.h

My os is Ubuntu 16.04 & MATLAB R2017a. When I'm trying to listen serial port with non-common baud rate, I get error: s = serial('/dev/ttyUSB0','BaudRate',4000001) f=open(s); Open failed: BaudRate could not be set to the specified value. I found,…
Nik Konst
  • 47
  • 1
  • 7
0
votes
0 answers

Dbc File Format Speed Issue

I have a sensor that can give me a message. I want to transfer this data via can. My receiver wants me from a .dbc file. (Database for can). In my local(with PCAN) i can send a data in 1 miliseceond. But after i put the can cable to my receiver it…
mozbek
  • 3
  • 4
0
votes
0 answers

serial port output from 8051 micro is incomplete and reversed

I'm trying to make a program in the 8051 machine language that allows me to send data from its ROM to the PC in 16-byte chunks asynchronously so that it can do other work at the same time. In this code, I was expecting the following output on my…
Mike -- No longer here
  • 2,064
  • 1
  • 15
  • 37
0
votes
2 answers

Baud rate of inb and outb commands - linux

I want to pass binary data from my PC to my micro-controller through the real serial port in my computer. At this time, I'm thinking of using INB and OUTB functions so I don't have to put up with linux tty character overrides. Question is, how do I…
Mike -- No longer here
  • 2,064
  • 1
  • 15
  • 37
0
votes
2 answers

How to get base_baud frequency of a com-port in windows

Is there a windows call to get the baud base frequency, like this one in linux. struct serial_struct ser; ioctl(com, TIOCGSERIAL, &ser); base = ser.baud_base;
Björn
0
votes
1 answer

Neither user nor current process has android.permission.SERIAL_PORT

I have gotten my hands on a Android POS device and I am currently trying to make our company's app work on the machine. a POS Z90 device. at one point I must the set the devName and baudRate (according to the example…
Damion
  • 61
  • 7
0
votes
2 answers

Arduino Bluetooth Serial

I keep getting weird problems working with the Arduino bluetooth, and before I go buy another I wanted to see if anyone had some insight. Despite setting the Serial monitor and Arduino baud rates both to 9600, I get a mismatch and all the outputted…
Brian
  • 89
  • 6
0
votes
0 answers

Where does 'baud rate' value go in serial Android-2-Arduino communication over USB

Issues with Android-2-Arduino communication made it clear to me I have no clue which parts of the chain are (directly) affected by the baud rate. Could you please confirm/correct following assumptions? The 'baud rate' value is not related to…
Jaroslav Záruba
  • 4,694
  • 5
  • 39
  • 58
0
votes
1 answer

Is there something unstable about 38400 baud?

I am writing a python project to control a device with PyVisa over a USB cable. I am having a lot of success. I noticed that the device datasheet supported 9600, 19200, 38400, 57600, 115200, 230400, 460800 baud rates so I created some functions for…
boymeetscode
  • 805
  • 1
  • 9
  • 26