Tagged Questions
The comm tag has no wiki summary.
4
votes
1answer
102 views
How to initialise a serial port using java?
I know this question has been asked many times and i've looked through the top 20 search result from google and i still cant get my code to work.
portList = CommPortIdentifier.getPortIdentifiers();
...
4
votes
1answer
760 views
Unable to read SMS from the Nokia phone using GSMComm
I'm implementing a project for reading and parsing SMS from Nokia Xpress Music 5800 using GSMComm library
I tried using GSMComm Demo: I'm able to get phone information, different status such as ...
3
votes
3answers
44 views
Sending SMS from Java Application using communications API
I am using Java Communications API. Want to know that is it compulsory to set CSCA (Service Center Address) using the AT command: AT+CSCA= for sending sms through java application? Or we can just skip ...
3
votes
3answers
134 views
Where can I get to download Java comm api?
I want to write some programs using Java comm api. I am not able to find site/page from which I can download this API. Can anyone please tell me where can I get this API?
Basically I want to send SMS ...
2
votes
4answers
56 views
Compare 2 similar files and only output the differences, preserving the order in which they occur?
hoping someone can help me get my head around this
I have 2 files, one is 325 lines long, one is 361 lines long.
The bulk of these files is identical content but the 2nd one has random extra lines ...
2
votes
1answer
88 views
Why do the outputs differ when I run this code using NetBeans 6.8 and Eclipse?
When I am running the following code using Eclipse and NetBeans 6.8. I want to see the available COM ports on my computer. When running in Eclipse it is returning me all available COM ports but when ...
2
votes
1answer
260 views
Find lines common to several files
I'm trying to determine which header declares a specific function. I've used grep to find instances of the function's use; now, I want to find which header is included by all the files. I'm aware of ...
1
vote
1answer
34 views
linux comm produces different results when run from crontab
I am running the following command from a bash script:
comm -23 file1 file2 > file3
(file1 & file2 are de-duped and sorted first)
This produces a file3 that contains rows unique to file1 ...
1
vote
4answers
133 views
bash: Difference between join and comm
# comm -12 /tmp/src /tmp/txt | wc -l
10338
# join /tmp/src /tmp/txt | wc -l
10355
Both the files are single columns of alphanumeric strings and sort-ed. Shouldn't they be the same?
Updated ...
1
vote
3answers
177 views
VB6 RS232 commands not working
I have the following code:
MSCommProj.CommPort = 6
MSCommProj.RThreshold = 1
MSCommProj.Settings = "19200,N,8,1"
MSCommProj.InputLen = 0
MSCommProj.PortOpen = True
And it opens just fine and ...
1
vote
1answer
113 views
Is there an equivalent of unix “comm” command in R?
I have one master file with a list of unique IDs and want to align three files with subsets of IDs alongside this, ending up with:
Column 1 (id1, id2, id3, id4 etc) Column 2 (space, id2, space, ...
1
vote
2answers
342 views
Need to use COMM port 2 to get information from a device. .Net doesnt support it though
I am writing a vb.net app that has a piece which needs to send a small command to comm port 2 and get the return result. The problem is .net doesnt have any support for serial communication seems ...
1
vote
3answers
175 views
Finding Set Complement in Unix
Given this two files:
$ cat A.txt $ cat B.txt
3 11
5 1
1 12
2 3
4 2
I want to find lines number that is in A "BUT NOT" in ...
0
votes
0answers
39 views
Serial COMM port in windows remains owned after closing
I have a problem with comm ports in JAVA.
I'm using Java version, 1.5 because that version still have access to windows COMM ports (serials).
The problem is that the command throws the exception:
...
0
votes
2answers
56 views
Get the first column of comm output
So I'm trying to get the first column of comm output using awk.
I read that TAB was used as a separator for comm so i did :
awk -F"\t" '{print $1}' comm-result.txt
With comm-result.txt containing ...
0
votes
0answers
43 views
How and which technology (.NET-WinForms,C++-MIDI MFC based) is the best to use for reading and writing COM Port data?
I need to solve a problem for reading and writing COM Port data from MIDI application.
1)The software must be able to handle multiple MIDI In and MIDI Out ports simultaneously sending and receiving ...
0
votes
0answers
163 views
Java COMM CommPortIdentifier.getPortIdentifiers() returning duplicate entries
I am using Java COMM on Windows XP SP3. In the startup of my code I log a list of all serial and parallel ports in the system. I am getting what appear to be duplicate entries however, see sample ...
0
votes
1answer
32 views
Windows command to print only common lines in two or more files
Something like comm but for Windows (No, installing Cygwin just for this is not a good idea.) It will be great if it will allow compare more than 2 files at once. Example for 2 files:
File1:
foo1
...
0
votes
3answers
428 views
C++ COMM port Opening, Reading and Writing
Hello I am trying to open a COMM port using Win32's CreateFile function, I have read docs at msdn as well as on several forums on how to do that but no matter what I do I still get Error code # 2 ...
0
votes
1answer
137 views
Modem not responsive from win32 api
Hi
I have a problem with a modem and win32 api.
When I open the comm port from my source code the port is ready to receive commands but the modem does not write output. All at commands I write are ...
0
votes
1answer
676 views
Java applet with rxtx components for serial communication
I am trying to build an applet that can open a serial port and communicate with the same. I have used rxtxcomm.jar for the serial communications. I have an applet built that works in the eclipese ...
0
votes
2answers
784 views
Java serial comm API - what does inputstream.read() return if a timeout occurs?
Anyone know the exact value returned when the serial driver times out? I'm running Java1.5 on Win XP.
0
votes
1answer
590 views
Getting Java Security Exception with java comm api from GWT
Im developing a GWT application to control an X10 home automation controller(USB Device).
It uses the java Comm APi to communicate witht the controller. But im getting this exception when trying to ...
-3
votes
1answer
81 views
Why do the outputs differ when I run this code using NetBeans 6.8 and Eclipse? [closed]
Possible Duplicate:
Why do the outputs differ when I run this code using NetBeans 6.8 and Eclipse?
When I am running the following code using Eclipse and NetBeans 6.8. I want to see the ...