Questions tagged [multiplexing]

In telecommunications and computer networks, multiplexing (also known as muxing) is a method by which multiple analogue message signals or digital data streams are combined into one signal over a shared medium.

In telecommunications and computer networks, multiplexing (also known as muxing) is a method by which multiple analogue message signals or digital data streams are combined into one signal over a shared medium.

The aim is to share an expensive resource. For example, in telecommunications, several telephone calls may be carried using one wire. Multiplexing originated in telegraphy in the 1870s, and is now widely applied in communications.

In telephony, George Owen Squier is credited with the development of telephone carrier multiplexing in 1910.

243 questions
1
vote
0 answers

How do I explain that the instructions count yielded by simpleperf stat, record over same thread are NOT identical?

I'm an engineer developing something on Android platform, hence using simpleperf is just something normal to assess thread performance. However recently I got caught in a dilemma, I'm wondering which statistics I should use, let's take a look at the…
Shih-Chan Huang
  • 219
  • 2
  • 9
1
vote
1 answer

Python based UDP crossbar multiplexer

I have a problem creating a UDP crossbar multiplexer in python. What I need is to create a program where there are many sources and sinks for UDP data. Crossbar Image For the purposes of this: A Source is a UDP socket that is accepting data on a…
atn_graham
  • 13
  • 3
1
vote
1 answer

How do Cloud Run instances perceive multiple requests from HTTP2 connections?

HTTP2 has this multiplexing feature. From this [answer](Put simply, multiplexing allows your Browser to fire off multiple requests at once on the same connection and receive the requests back in any order.) we get that: Put simply, multiplexing…
cbdeveloper
  • 27,898
  • 37
  • 155
  • 336
1
vote
1 answer

C How the child thread notifies the main thread, while the main thread is still running?

I am working on a project of multi-client server chatting using socket programming based on C. I want to make a thread notify the main thread after it has finished: but I don't want the main thread to wait until that( the child thread) is finished.
Semere Gr
  • 31
  • 2
1
vote
1 answer

count number of streams multiplexed in http2

I'm having 5 connections from client to server using http2(tcp. I set the maxconcurrent streams to 3 in http2 field How can I find number of streams in a connection in http2 from pcap file in Wireshark
1
vote
0 answers

I have a question about the source, 'multipelx async iterator' of Deno standard library

What is purpose of iteratorCount in the following code (from https://deno.land/std@0.64.0/async/mux_async_iterator.ts)? #iteratorCount = 0 #yields = [] #throws = [] #signal = deferred() add () { ++this.#iteratorCount …
1
vote
2 answers

i2cdetect does not recognize VL6180X sensors behind TCA9548A I2C multiplexer

I have 2 VL6180X Distance Sensors properly connected to a TCA9548A Multiplexer, however it only recognizes the Multiplexer itself and not the 2 sensors as you can see with the 0x70. Is there any way to configure the i2c adresses? i2cdetect -y…
hux0
  • 207
  • 1
  • 4
  • 17
1
vote
0 answers

SIM7600 serial port multiplexer with Beaglebone

I am using SIM7600 module with Beaglebone board connected thru UART2. It works well with ppp on /dev/ttyS2. Since the application wants the GPS info simultaneously, trying to use CMUX with the n_gsm driver as given here…
ViKaCi
  • 11
  • 2
1
vote
1 answer

Oracle multiplexing redo log

I have 5 redo log files on the same disk as below : /disk1/oradata/redo01.log /disk1/oradata/redo02.log /disk1/oradata/redo03.log /disk1/oradata/redo04.log /disk1/oradata/redo05.log But it is advisable to multiplex on another disk. In this…
Tony92
  • 91
  • 7
1
vote
2 answers

Why is select(2) called "synchronous" multiplexing?

I am a bit confused at the moment about select(2), which states in the summary: select, pselect, FD_CLR, FD_ISSET, FD_SET, FD_ZERO - synchronous I/O multiplexing as far as I am aware many libraries and programs such as libuv and nodejs use…
Julius
  • 1,155
  • 9
  • 19
1
vote
1 answer

multiple RTP Packet to each file. And Muxing

I have Janus(WebRTC) server. And I am using VP8/OPUS. Then Janus RTP Packet forwards to GStreamer. I have two questions. Do I have to run one GStreamer(with multiple threads) or multiple GStremaer? Actually, Janus sent to Gstreamer multiple RTP…
1
vote
2 answers

VHDL mux implementation?

Is it possible to implement a mux with multiple control signals? For example, I want to do something like this: with (sig1 & sig2) select output <= A when "00", B when "01", C when "10", D when "11", '0' when others; I know I could just…
Jonathan D
  • 19
  • 1
  • 3
1
vote
0 answers

Is it possible to control two 7 seg displays with analog output from Arduino?

I am playing around with arduino and i am trying to build stuff. While adding more and more to my project i found some difficulties. I run out of digital pins due to my LCD and i would like to control 2 7 seg displays to project some numbers from a…
Ioan Kats
  • 523
  • 1
  • 7
  • 19
1
vote
2 answers

What does HTTP 1.x lack to allow multiplexing like HTTP 2

I know that HTTP 1.1 supports pipelining, where multiple requests can be sent over single connection but these requests need to be served by server in the same order they were sent from the client. Also, from a client you can make multiple HTTP…
Gaurav Kumar
  • 1,091
  • 13
  • 31
1
vote
2 answers

Java NIO multiplexed Server: should I use worker threads to process requests?

Should I accept connections and monitoring clients on a listener thread and then let workers handle the request and answer to the client, or should I do everything on one thread?
Doc
  • 11
  • 1