Questions tagged [bus]

A Bus is a physical device used to connect different functional blocks of a computer or a different computers in order to communicate them together. Also Bus is a data type in MATLAB language used to bundle some data to virtual (just for useful rendering) or non-virtual (for contiguous memory allocation) structure.

The Bus advantages (as physical device) over wires are reducing the needed number of wires and catholicity. The main characteristics of Buses are width (amount of bits can be transmitted at once) and frequency (work speed).

The Bus as a structure of MATLAB language used to bundle different variables (or signals, for example in Simulink) in one structure. Can be used as virtual bus just for convenient accessing to variables and for reducing number of wires at Simulink diagram or as non-virtual - Nonvirtual buses use contiguous memory allocation for variables.

321 questions
0
votes
1 answer

C string capitalize problem. I encounter bus error

I am making capitalized function. But when execute this code, the bus error occur. Is there anyone can debug this? I really need your help!! please help me . I am computer programming novice without c knowledge. #include void up(char…
0
votes
0 answers

Accessing Onboard I2C-Controller from Windows10 Professional

we want to use a single board computer (C582S-IM-AA), which has an I2C Controller, because we have some I2C slave ICs which, drive some LEDs and inputs and outputs. The OS should be Windows10 Professional, because we have an application that runs on…
woelfchen42
  • 419
  • 2
  • 8
0
votes
1 answer

Gstreamer how to get element information from STATE_CHANGED message from the bus

I am working with Gstreamer and its Python bindings. Consider the following bus_call function: import sys from gi.repository import Gst def bus_call(bus, message, loop): t = message.type if t == Gst.MessageType.EOS: print("Bus…
user1315621
  • 3,044
  • 9
  • 42
  • 86
0
votes
0 answers

How would I construct a system bus to connect 3 microprocessors and 2 memory boards, using shared memory?

I'm currently attempting to solve the following homework question: Assume that one 16-bit and two 8-bit microprocessors are to be interfaced to a system bus. The following details are given: 8pts All microprocessors have the hardware features…
0
votes
0 answers

Use two SFSpeechRecognizer with different languages at the same time in Swift 5

I am trying to run two SFSpeechRecognizer simultaneously with different languages. I'm aware of these links, but they want something different or the answer doesn't work: SFSpeechRecognizer multiple languages Multiple instances of…
Aurora1510
  • 446
  • 4
  • 10
0
votes
0 answers

Anylogic: why is there an: "Stop counter is out of range of stops array" during compiling?

I am learning Anylogic, at the moment I want to run a bus on a given route with certain bus stops. For this I am using the following logic: carSource->carMoveTo1->selectOutput->carMoveTo2->carDispose. carSource is the place where the bus appears;…
Dmitry
  • 3
  • 1
0
votes
1 answer

Azure Function V3 .NET Core and Microsoft.Azure.ServiceBus: The lock supplied is invalid

I am using Azure Function Service Bus Queue Trigger binding to retry my service if there is any exception been thrown. I have the following in the host.json "extensions": { "serviceBus": { "messageHandlerOptions": { …
user3284094
  • 71
  • 1
  • 5
0
votes
0 answers

I think this data bus test doesn't work. Anyone explain why it works?

I am searching for how to test data bus between CPU and memory. I found the 'walking 1's test' C source code. (link : https://www.esacademy.com/en/library/technical-articles-and-documents/miscellaneous/software-based-memory-testing.html ) So, I…
0
votes
0 answers

Estimating number of maximum threads before bus contention

Suppose I have an arbitrary number of threads that need to read from different memory locations. What parameters do I need to estimate the maximum number of threads that can do this simultaneously without bus contention? Where can this information…
0
votes
2 answers

PDO Linking in CANopen

In the CANopen Network, all devices (clients, formally "slaves") communicate with a central controller (master). Therefore, no slaves listen to the process data objects (PDOs) and therefore to the CAN identifiers of another slave. Using PDO Linking,…
Dr No
  • 118
  • 5
0
votes
1 answer

How to use odoo longpolling without reverse proxy & domain name

Is there a way to use odoo longpolling without having reverse proxy and domain name ? I'm using : format for my instance. Longpolling is set to 8072, multi processing is enabled (worker not equal to 0), 'proxy_mode = True' but…
Nurhun
  • 475
  • 1
  • 9
  • 21
0
votes
1 answer

Verilog wire to register

I have a bidirectional bus and I can read the inputs from it into wires, but I have a hard time do logic with them and assign them back on the BUS as an output, or connecting them into registers so I could work with the values. All help and response…
Jozsó
  • 13
  • 2
0
votes
1 answer

How to test if a 3-bit bus has the first bit set on 1 - verilog

I'm trying to find out how could I check if a 3-bit bus has the msb set on 1, i.e. 1xx. When I check bus==3'b1xx nothing seems to happen.
pauk
  • 350
  • 4
  • 15
0
votes
1 answer

How to find out how wide adress bus width is?

Basicly, I couldn't find anywhere where this is explained thoroughly, so I though maybe anybody would have a explanation or any direction where should I search for the answer. The question would be : If I have a CPU connected to 16384 bit RAM, the…
U-plus-1F92C
  • 1
  • 1
  • 2
0
votes
3 answers

I'm trying to find out how to calculate how many CPU cycles a set of operations takes for a specific CPU and I/O device

This is an exam question (practice exam, not the real one) but I have no idea how to work out the answer: The computer has a 64-bit CPU with a speed of 2GHz, the instructions perform programmed Input/Output to a device which is attached to a 33MHz…