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
7
votes
1 answer

Print out response of Dbus Method Call in C

The problem I am having is specifically printing out the response of a dbus method call in C using the low level API. I am new to C's libdbus, but have done some work in python-dbus. I know how to write dbus methods and method calls in python as…
NuclearPeon
  • 5,743
  • 4
  • 44
  • 52
6
votes
1 answer

NullPointerException with Otto and Dagger

I'm new to Otto and I'm having serious trouble making out its functioning together with Dagger dependency injector and JobManager. Whenever I launch my application, I keep getting the same error message: "java.lang.RuntimeException: Unable to…
Juan José Melero Gómez
  • 2,742
  • 2
  • 19
  • 36
6
votes
2 answers

Make signal names coming from library links unique?

OK, I've been struggling with this for a while. What is the best way to accomplish the following: where Reaction Wheel 1-4 are links to the same block in a library. When the Speed Counter, Speed Direction and Current signals are added to the final…
Rody Oldenhuis
  • 37,726
  • 7
  • 50
  • 96
6
votes
2 answers

Bus error in C struct

This is a code I testing to copying struct. 1 #include 2 #include 3 4 typedef struct emp_struct { 5 char *name; 6 int employee_no; 7 float salary, 8 tax_to_date; 9 } Employee; 10 11 typedef…
sogo
  • 351
  • 5
  • 20
6
votes
3 answers

What is PDO mapping?

After reading several CiA specifications, I am still having difficulty understanding PDO mapping, Process Image, and Process Data Exchange in CANopen. I know SDO is used for configuration settings in the pre-operational state and has protocol…
Vishwanath Kamath
  • 340
  • 2
  • 3
  • 14
6
votes
2 answers

Enable bus stop icons clickable in Google Maps

Using the Google Map API, how can I set the bus stop icons to be clickable and show the bus number services in an infowindow? I can see in Google Map site, it is enabled. But when I create my own code using the Map API, it seems that this is…
jcagumbay
  • 61
  • 1
  • 4
5
votes
2 answers

Can you piece together the following clues to help me read temperatures out of the Winbond W83793 chip?

I am trying to get OpenHardwareMonitor to read temperature data out of the Winbond W83793 chip on my Supermicro X7DWA motherboard. The problem is that I don't have any low-level programming experience, and the available docs online do not seem to…
Dalal
  • 1,096
  • 2
  • 17
  • 38
5
votes
1 answer

Drawing bus route to Google map

I want to make a public transportation application for Android. First problem I'm facing is how to create a bus route and show it to users. I have a list of bus stops coordinates. I understand, I have to generate encoded polyline which I did. Used…
evilone
  • 22,410
  • 7
  • 80
  • 107
5
votes
4 answers

ServiceBus Architecture Pros and Cons

What are the Pros and Cons of using a Service Bus architecture in a SOA project? What are the suggested open source Service Bus platforms that you would recommend? Thanks in advance
Faris Zacina
  • 14,056
  • 7
  • 62
  • 75
5
votes
2 answers

Is there a general I2C command to see if a device is still present on the bus?

Is there a general I2C command to see if a device is still present on the bus after it is initialized once? For example an OLED display. The reason I ask this is to avoid the main program will freeze (when a device is disconnected) because of…
Codebeat
  • 6,501
  • 6
  • 57
  • 99
5
votes
0 answers

TCP/IP over shared serial bus

Is there a serial protocol available for linux that allows for multiple devices to communicate over a serial interface (shared serial bus) with TCP/IP. My understanding is that PPP is meant for only two devices to communicate over serial…
michael
  • 2,577
  • 5
  • 39
  • 62
5
votes
0 answers

504 Gateway timeout when using Azure Service Bus relay

I'm using Windows Azure Service Bus relay to expose a WCF service that lives on premises using basicHttpRelayBinding. For every request, the web service will just get some data out of a SQL Database using entity framework, then convert the results…
5
votes
2 answers

Azure Service bus queues topics vs queues for web/worker roles

I know Choosing between .NET Service Bus Queues vs Azure Queue Service provides some answers as to when to use queues for web/worker roles vs Azure Service bus, but I'm just starting to study Azure and was looking for something more thorough. It…
TheWommies
  • 4,922
  • 11
  • 61
  • 79
4
votes
5 answers

Does anyone know of a fast bus for local messaging between applications on the same machine?

I'm looking for a pub/sub mechanism that can be used by .NET applications running on the same machine (a mixture of different app domains and processes). I'd really rather avoid having to run a separate service or anything that requires too much…
open-collar
  • 1,404
  • 1
  • 16
  • 22
4
votes
0 answers

How do I link an azure service bus publisher opentelemetry span to subscriber trace in another process using .net core c#

I have 2 processes running webapi : publishes message to azure service bus queue console app: subscribes to message from queue I am using open telemetry collector with yaeger, .net core 6, c# I am able to see traces from the .net core webapi that…
user1424876
  • 133
  • 1
  • 7
1
2
3
21 22