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
2
votes
2 answers

Is it possible to use socketCAN protocol on MacOS

I am looking to connect to a car wirelessly using socketCAN protocol on MacOS using the module python-can on python3. I don't know how to install the socketCAN protocol on MacOS. Pls help.
hifromdev
  • 262
  • 3
  • 10
2
votes
3 answers

What is a 'Bus error' and what in my Fortran code triggers it?

My Fortran program compiles, but then I get a weird error called 'Bus error.' Here is my code in its entirety. I could really use some help. Does anyone know how I can get rid of this error and get my program to work fine? I'm trying to generate an…
EuropaDust
  • 333
  • 4
  • 12
2
votes
0 answers

RabbitMQ/C# message serialization

Hey im having some problem serializing my POCOs via newtonsoft and rabbitMQ, they both implement IMessage interface, but the POCOs themselves are not shared between the apps, to summarize, i have one IMessage interface and two Message : IMessage…
ilovekittens
  • 75
  • 1
  • 6
2
votes
0 answers

How to correctly pause Rebus from receiving messages?

I'm having a similar situation described here, but cannot comment there because just registered on this site. A workaround for "pausing" with SetNumberOfWorkers(0) works in most cases. However, if SetNumberOfWorkers(0) is called during a lengthy…
Ilya
  • 21
  • 1
2
votes
0 answers

angular 6 message bus

currently our team has developed simple angular 6 app with few components and they are working correct but we know that this components are already too coupled together (they know too much about themselves). So naturally we want to move to…
Macko
  • 906
  • 3
  • 11
  • 27
2
votes
1 answer

How to select from two identical bus signals in Simulink?

I have two identical bus structures in Simulink, with different values. One is the (CAN) bus from a real vehicle, the other is an identical simulated (CAN) bus in Simulink. I want to compose a mixed, identical output bus with these, where some…
Bart
  • 261
  • 3
  • 14
2
votes
2 answers

Prevent $emit from emitting more than once in Vue

I have an emit call within my Vue project to update search results, but the emit is being called at least 4 times, because the emit call is defined at various spots, so the data is sometimtes emitted with it and at other spots it is not. I am using…
Benny
  • 839
  • 16
  • 32
2
votes
1 answer

When are TLP packets created in a memory mapped PCIe configuration?

I have an understanding problem when it comes to PCIe connections. In the PCIe interface data is transferred between devices using TLP packets. In a memory mapped configuration if a piece of software wants to send data to a device, then it must…
2
votes
1 answer

Spring Cloud Bus - Refresh a specific cluster of client

I have a spring cloud config server configured over spring cloud bus over kafka. I am using Edgware.RELEASE with boot 1.5.9. When I send a POST request to the endpoint /bus/refresh with destination=clientId:dev:** in the body via POSTMAN to config…
jarm
  • 21
  • 3
2
votes
1 answer

Ubuntu Camera: VIDIOC_STREAMON error 28, No space left on device

I have a depth camera which outputs 5MP RGB image stream. When trying to use this camera, I got an error message: VIDIOC_STREAMON error 28, No space left on device The specification of the camera says I need a USB 3.0, which I do have, and the…
foothill
  • 483
  • 3
  • 8
  • 18
2
votes
2 answers

C# Azure Service Bus Queue OnMessage Callback

I'm writing some functionality that responds to an Azure Service Bus Queue. This currently polls on a specified queue and OnMessage triggers a callback to a method in the original class that calls it: partial class Class1 { private…
2
votes
1 answer

What's the minimum clock cycles number to read and write with AXI4Lite

I'm wondering what is the minimum number of clock cycle to do a simple access on an AXI4Lite bus. I think it's 4, but I'm not sure.
FabienM
  • 3,421
  • 23
  • 45
2
votes
1 answer

Rebus: 2 handlers in 2 processes. Hit inconsistently and alternately

I have two console apps using Rebus. They both reference an assembly where messages (commands and events) are defined. Console app "A" sends commands and listens to events for logging purposes (e.g.: sends a CreateTCommand and listens for…
Etchelon
  • 832
  • 11
  • 27
2
votes
1 answer

MATLAB Function block output as virtual Bus

I tried to output data from MATLAB Function block as Bus signal. As you now it can be virtual and non-virtual. Workaround I know how to create it as nonvirtual: 1. Create Bus object at workspace; bussignal(1) =…
Mikhail_Sam
  • 10,602
  • 11
  • 66
  • 102
2
votes
1 answer

Resolve commands from Bus

Currently moving away from handling commands sync and placing them onto a message bus so they can be handled later but having problems getting back the real type when trying to to load commands rather then type each one out Here is what I have so…
Luke
  • 59
  • 1
  • 6