Wireless information sending and baud rate

AI Thread Summary
Baud rate synchronization in wireless communication relies on the chosen protocol, with asynchronous protocols allowing for close timing without perfect synchronization. In asynchronous communication, data can be transmitted without a dedicated clock signal, using techniques like long pulses to indicate transmission timing. Synchronous protocols require a clock from a master device, which complicates wireless transmission. Most wireless systems use asynchronous methods, but if synchronization is needed, a separate channel can transmit the clock alongside the data. Manchester coding is a common technique used in simple wireless links to embed clock information within the data stream, balancing reliability and bandwidth efficiency.
bassplayer142
Messages
431
Reaction score
0
I understand how a baud rate can be set by a clock and the data can be shifted through a line. Both sides need a clock to keep in sync. How would this be achieved if you are using wireless. Would both sides need to communicate back and forth because I can't see how a clock could be set on both sides if both sides can't communicate.

I am only interested in moving information in one direction.
 
Engineering news on Phys.org
bassplayer142 said:
I understand how a baud rate can be set by a clock and the data can be shifted through a line. Both sides need a clock to keep in sync. How would this be achieved if you are using wireless. Would both sides need to communicate back and forth because I can't see how a clock could be set on both sides if both sides can't communicate.

I am only interested in moving information in one direction.

Well, it really depends on the communications protocol you're using. If you're using an asynchronous protocol (like RS-232 serial, or USB, or Ethernet--IEEE802.3) you know that you won't maintain perfect time synchronization, but you can keep it close enough for short bursts (a few hundred KB, for instance). As long as you know when a transmission happens (say, with a really long high pulse), and the transmission speed (say, 9600 baud) and you've got a decent clock crystal, you can receive packets of data without having to transmit a clock.

If, on the other hand, you're using a synchronous protocol (e.g. I2C or SPI), you rely on a clock being generated by the bus master.

Generally, most wireless protocols are asynchronous. If you needed to wirelessly transmit a clock, and have multiple channels available, and your wireless transmission speed was much faster than your wired protocol, you can use one channel to transmit the clock and one to transmit the data. Or you can come up with some way of transmitting both on the same channel.

But it's probably easier to change synchronous data to asynchronous (say, with a micro) transmit it wirelessly, and then convert it back from asynchronous to synchronous on the receiver end. Or just not use synchronous in the first place.
 
Still a little out of my league! But thanks for the information.
 
Wifi (802.11) uses a more complex scheme but simple wireless (or infrared) datalinks use Manchester coding http://en.wikipedia.org/wiki/Manchester_code to embed a clock in the data stream.
It costs you in terms of bandwidth but is very reliable and simple to implement.
 
Very basic question. Consider a 3-terminal device with terminals say A,B,C. Kirchhoff Current Law (KCL) and Kirchhoff Voltage Law (KVL) establish two relationships between the 3 currents entering the terminals and the 3 terminal's voltage pairs respectively. So we have 2 equations in 6 unknowns. To proceed further we need two more (independent) equations in order to solve the circuit the 3-terminal device is connected to (basically one treats such a device as an unbalanced two-port...
Thread 'Weird near-field phenomenon I get in my EM simulation'
I recently made a basic simulation of wire antennas and I am not sure if the near field in my simulation is modeled correctly. One of the things that worry me is the fact that sometimes I see in my simulation "movements" in the near field that seems to be faster than the speed of wave propagation I defined (the speed of light in the simulation). Specifically I see "nodes" of low amplitude in the E field that are quickly "emitted" from the antenna and then slow down as they approach the far...
Back
Top