Questions tagged [communication-protocol]

Communication protocol is a system of rules that allow two or more entities of a communications system to transmit digital message formats/rules. Protocols are the standard that defines the syntax, semantics and synchronization of communication and if any error recovery methods.

Communication protocol is a system of rules that allow two or more entities of a communications system to transmit digital message formats/rules. Protocols are the standard that defines the syntax, semantics and synchronization of communication and if any error recovery methods. Protocols may be implemented by hardware, software, or in a combination. They are required in telecom, computers and related systems. Internet/Computer Network are not possible without them.

Some of the properties that they define are : packet size, transmission speed, error correction types, handshaking, synchronization techniques, address mapping, acknowledgement processes, flow control, packet sequence controls, routing, address formatting.

In computer network, Protocols are normally defined in a layered manner and provide all or part of the services specified by a layer of the OSI reference model. Protocols are usually implemented by writing a number of programs which communicate with one another through queues and by function calls. Timers are a integral part of protocols and to start and stop timers, a it normally uses an interface to the computer's operating system.

82 questions
0
votes
0 answers

Modify router internal server to have your own router managment page

So today I came to this odd question. Lately I have been having many problems with my wireless connection and I wanted a fast way of enabling/disabling wireless and also block my MAC address and see how many devices are connected to my network etc.…
No One
  • 674
  • 2
  • 10
  • 25
0
votes
0 answers

How to create protocol for the network layer on CAN bus?

I am using MCP 2515 integrated CAN controllers/transceivers and arduino microcontrollers connected to multiple sensors to create a CAN bus. I am now trying to create a network layer on top of the simple CAN messaging. The goal is to emulate a 1553…
0
votes
1 answer

Ways to establish communication between s7-1200 PLC and MS Azure

We're a group of students that is gonna set up communication between a S7-1200 PLC and a cloud (probably gonna be MS Azure), to upload measured data (e.g. temperature, pressure). In what ways is it possible to achieve this, and what communication…
0
votes
0 answers

Problem logging OutputStream using given communication protocol

I am trying to develop an Android application in which I want to communicate with thermometer using bluetooth. Right now I am already able to pair my phone with the device and I know that the device is acting as a slave, waiting for incoming request…
0
votes
1 answer

What‘s the difference between OSI and OPC?

OSI: Open Systems Interconnection Reference Model OPC: OLE (Object Linking and Embedding) Process Control I can‘t figure out the difference, since both of these refer to communication between machines. Glad about any answer. Thanks
LJag
  • 321
  • 2
  • 13
0
votes
0 answers

nodejs IoT device to device communication

so im working on a my bachelor thesis and for that i need to implement, in a smarthome, d2d communication between IoT devices. So i want to implement the usuall server work, like noticing if a device connects/ disconnects etc. to the IoT devices, so…
Max
  • 200
  • 2
  • 13
0
votes
0 answers

How to remove transient of radio signal

I tried to capture pulse tone from one of the radio and tried to find its frequency using FFT. But radio send some transient before the transmission of original pulse that's why i receive transient frequency as well that is not needed . I capture…
0
votes
1 answer

How to communicate between different programming languages?

I have wrote an api for my python code like this: def greet_in_python(name, greets="Hello"): ## in real life this implementation may be more complex and has other **python** dependencies .... return greets + " " + name But only python…
moctarjallo
  • 1,479
  • 1
  • 16
  • 33
0
votes
1 answer

Admin tool for verifying Corda Node p2p communication

Are there any reasonably simple utilities that unix administrators could use to verify p2p communications between Corda nodes, Artemis brokers, which facilitate the node AMQP communication? For example, we need to ensure that the appropriate urls:…
0
votes
1 answer

how to communicate from a server to client using OPC UA protocol using python

How do you communicate between a server and a client using the OPC UA protocol with python? I'm very new to python and my colleague asked me to do this. I didn't understand the question very well myself, but i was hoping you could help me with it.
0
votes
0 answers

Are there any fault-tolerant protocols based on unidirectional UDP?

I have encountered a situation where I need to replicate a small (<10 MB) database over unidirectional UDP. The physical ethernet cable prevents data flowing the other direction. Updates must be replicated within a few seconds with very low risk of…
orbo
  • 1
  • 1
0
votes
1 answer

How can communication middleware support soft real-time applications?

Nowadays the concept "real-time" has a lot different interpretations. In this question two definitions are provided: The hard real-time definition considers any missed deadline to be a system failure. This scheduling is used extensively in mission…
0
votes
1 answer

Tool chain for proprietary communication protocol

I (the company rather) have a protocol implementation which uses the CAN hardware (CAN Transceiver). The protocol itself is not a standard CAN protocol stack. Is it possible to use any of the off the shelf CAN-bus monitors for debugging and…
0
votes
1 answer

LIN Protocol Transceiver Behaviour during the GotoSleep Command

I am using LIN Protocol for Parking Brake functionality. baud rate : 10.4Kbps 1) I am sending the go to sleep command in $3C frame, after 50ms sending 0v to NSLP to put LIN Transceiver into sleep Mode but it is taking 9s for INHIBIT pin to go low …
0
votes
0 answers

TCP port without network adapter

I am intending to write some software modules that will all run on a single machine, and I would like for them to communicate with each other via TCP. It is likely that the machine I am using will not have a physical network adapter. Will TCP…
Steve
  • 61
  • 1
  • 2
  • 5