Tagged Questions
0
votes
1answer
27 views
Using glib to send raw bytes to an FTDI device over USB
I am developing a simple application in C with GTK+2.0 GUI, on Linux of course, this application is designed to control a device which is connected over the USB port and is using FTDI driver to ...
0
votes
1answer
26 views
C Pipe communicating write/read function cuts of text
The write or read function always cut of everything except the first letter. anyone knows why?
I have a father and a child that communicating with pipes.
I checked tha variable before putting it into ...
0
votes
2answers
75 views
Implementing SSL between JAVA GUI & C++ Server
I have an GUI which is designed in JAVA and act as an client, and can communicate remotely to an server which is written in C/C++. Communication between them is made through Sockets. However the ...
0
votes
1answer
61 views
How does UPS WorldShip know if Internet Explorer launched?
We use Aurora as a browser, but UPS WorldShip stubbornly uses Internet Explorer. So I created an executable named iexplore.exe and replaced the real iexplore.exe with my "fake". My "fake" iexplore.exe ...
0
votes
1answer
96 views
Communicating to USB Device
I bought a usb otoscope from the internet and I want to create an application that uses it. When I plug it into the computer, it reads the device as a USB Camera, and I can use the very barebones ...
1
vote
2answers
409 views
Simple Linux pipe program, data is not recieved
I have a simple Linux C program that I'm writing to help me better understand IPC, right now I'm trying to build it with pipes. I have a single code base that I run in two different terminal windows ...
0
votes
3answers
395 views
How to communicate via Socket in Android 4.0.3
I already have a socket communication interface which works fine in 2.3 version, but It doesn't work on 4.0.3, I've heard that it's not possible to make this kind of communication in the same thread ...
-1
votes
1answer
138 views
Communication protocols between Java and C
I wrote a server application in C and a client application in Java for android, I'm using byte streaming to communicate. How can I improve this communication protocol? Is there a cross platform ...
0
votes
1answer
248 views
Server/Client comunication through pipe
I recently started learning about IPC and I have some issues. I wrote a program that creates two processes which communicate through pipe like this:
#include <stdio.h>
#include <stdlib.h>
...
0
votes
4answers
191 views
Delay the communication between two threads
I have two threads (I am using pthreads on GNU/Linux). Now they are sharing information using global variables (I know, it's not nice). At the end of each cycle they have to send the value of 5 ...
0
votes
1answer
188 views
What is the fastest, reliable baud rate that can be used using radio modems? [closed]
I need to communicate with 30+ devices, via serial data over radio modems (Using C). Each cycle of messages should be done as quick as possible. (< 500ms)
Basic setup would be a master sending out ...
3
votes
2answers
400 views
Writing strings and a variable to a buffer in C
I am using serial port to control a device called nano controller. I used CreateFile, writeFile and readFile for communication.
this is the syntax for writeFile,
if (!WriteFile(hComm, lpBuf, ...
1
vote
2answers
2k views
Two-Way Parent Child Communication Using 2 Pipes in C on Linux
I'm trying to create a two-way communication between parent and child processes using 2 pipes using C on Linux. The parent is my program and the child is just a random program (say "cat").
I try to ...
0
votes
1answer
251 views
Guide me with sockets: server-client program that multiplies 2x2-arrays
I'm trying to write a c code with sockets to communicate a server and a client (or parent and child, as you prefer) but I'm really noob at this and I only keep getting errors. I know there are lots of ...
1
vote
1answer
392 views
Serial communication error in objective-C: Resource busy
I'm writing some code which purpose is to read values send by an ECG.
The ECG sends values read by it's sensors through a serial connection and (as a start) all the program has to do is read the ...
0
votes
2answers
534 views
Missing flow control data (0x13) from reading device data stream
I have written a Linux app to read & write binary data to a remote device over a USB port that is emulating a serial port.
When I read data from the device, I have a USB sniffer that shows a ...
1
vote
1answer
245 views
Echoing characters to a serial port in C
I am attempting to use C to echo characters from a pic32 processor to a terminal emulator via a serial port. The user would be prompted to enter a string and all that happens is that the characters ...
0
votes
2answers
182 views
How to know the status of an already established connection?
I have seen a few questions relating to this but never encountered the solution that is feasible my situation. I have 2 communicating devices communicating through my proxy device. I want to know how ...
1
vote
1answer
116 views
Improving IR serial reliability via software
The best thing I could find on Google was Reed-Solomon encoding; but it seems quite drastic.
Basically, I'm communicating with a small, resource-constrained device that has a serial port. ...
0
votes
3answers
431 views
Socket communication between C and java
I have a client and a server both running in C. My task is to introduce java program in which I create a server to the C client and a client to the C server. I am successful in trying to get the ...
2
votes
2answers
368 views
C/C++ Interface with HID - USB Device
I have a gamepad and i want to use the buttons on the joystick to interact with my program. I have been searching for a while now for any solutions and i cant find any. I have the device id and the ...
1
vote
4answers
182 views
Dealing with bit streams in C
I am writing some signal processing code in C that has a communications channel. At the output I get a bunch of bits as they arrive.
for (n=0; n<BUFFER_LENGTH; n++) {
/* do some processing ...
2
votes
1answer
3k views
How to use RTSP over HTTP?
Can someone please explain what is meant by RTSP using HTTP. How can I get video stream on TCP instead of UDP??
1
vote
0answers
318 views
Using pipe in bash-style shell [duplicate]
Possible Duplicate:
Implementing Pipes in a C shell (Unix)
Hi,
I'm writing a minishell to understand how Bash works and I want it to use pipe like
ls | sort for example (all commands ...
1
vote
1answer
1k views
Multiple read/writes with pipes in C
I've seen lots of examples of pipes that read from a child and write to a parent or vice versa. For example:
/* this example shows how unnamed pipes may be used */
#include <unistd.h>
...
2
votes
3answers
1k views
communicate c program and php
I want to have a web page (written in php because it's what i know) that displays an input value. I want that value to be passed to a c programa that's already running.
I though of using sockets to ...
2
votes
2answers
132 views
How to share datas between Ruby and c?
There is a Ruby process and has a string var named "switch", and the "switch" will be updated by user. There are also 2 C daemon process, which need to access the "switch" in a loop and decide the ...
1
vote
4answers
148 views
Using C, how can I access the same block of memory as another C program?
So, I'm on hour one of learning C. Maybe I'll jump over to C++ tonight.
I'd like to create two command line programs using C that can "talk" to each other. The first thought that came to mind is to ...
1
vote
4answers
878 views
How to pass data from one process to another in c?
Is there a way to pass data (ex: int value) from one process to another process in c?
In my experience, we just can send signal from one process to another. But looks like there is no way to "attach" ...
1
vote
4answers
644 views
Best way to pass data between two servers in C?
I wrote a program that creates a TCP and UDP socket in C and starts both servers up. The goal of the application is to monitor requests over the TCP socket as to what UDP packets to send it (i.e. ...
3
votes
3answers
262 views
How to communicate between a C and a C# application
What would be the best way to communicate between a C and a C# process. I need to send messages containing commands and params and such from the C# process. to the C process. and the C process then ...
1
vote
3answers
461 views
Interprocess communication on UNIX
I have to implement some mechanism in C on SOLARIS 9 SPARC in order to allow interprocess communication.
In a nutshell, i have to implement a multithread program where the father of the thread once ...
1
vote
1answer
531 views
How do I get through proxy server environments for non-standard services?
I'm not real hip on exactly what role(s) today's proxy servers can play and I'm learning so go easy on me :-) I have a client/server system I have written using a homegrown protocol and need to ...
5
votes
8answers
856 views
1k of Program Space, 64 bytes of RAM. Is 1 wire communication possible?
(If your lazy see bottom for TL;DR)
Hello, I am planning to build a new (prototype) project dealing with physical computing. Basically, I have wires. These wires all need to have their voltage read ...
6
votes
6answers
969 views
Is 0x9B (155decimal) a special control character? Why is it missing from ascii tables?
I'm working on an embedded system, and i'm having dramas getting it to send a certain chunk of data across the serial port. I narrowed it down and found that if a 0x9B is present in the message, it ...
4
votes
4answers
3k views
Serial Port Redirection or Splitting
I am looking for a book and or a code sample of how to do serial port redirection or port splitting. I write a lot of com port applications and want to write a monitor application that will allow me ...
5
votes
3answers
2k views
A way to convert byte stream to packet stream in C89 on an embedded device [closed]
I’m working on with an embedded device that is connected to PC using rs232 (rs232 over USB).
I’m thinking about developing my own protocol:
<MAGIC><LENGTH><BINARY DATA><CRC> ...
2
votes
10answers
6k views
How to get my non-loopback network ip address in C?
For a communication between two hosts, I need to send the IP address of my host to the other site. The problem is that if I request my IP address, it might be that I get back my local loopback IP ...
4
votes
8answers
1k views
RS232 Communication - Can I use it to create a steady state signal?
In all honesty, I think the answer is "no;" however, I want to get a second opinion. Basically, I need one micro-controller device to send a steady signal to another one, but the communicate between ...
2
votes
4answers
268 views
What are the most frequently used flow controls for handling protocol communication?
I am rewriting code to handle some embedded communications and right now the protocol handling is implemented in a While loop with a large case/switch statement. This method seems a little unwieldy. ...
