-
Resource temporarily available is the text related to errno and is occuring either as the socket is created or as a connection is established to the phone.
It seems most likely that it will be as the connection is established (otherwise the phone would not be affected at all: socket creation is local to the PC).
I'll see if I can help, but I must say that if the phone resets as the connect...
2005-12-31 13:31:11 UTC in x70talk
-
> Now it make!!
Excellent.
So, the symlink you have created points to the device created by the kernel usbserial device?
I'm afraid I don't have a USB cable so I'll have to guess a bit.
> ./x70talk --device /dev/ttyUSB0 info
> X70 init: error ()
If you run with -t (e.g. ./x70talk -t --device /dev/ttyUSB0 info) you should be able to see what the program is trying to...
2005-08-30 17:07:47 UTC in x70talk
-
Under /usr/include, asm/errno.h is the file that defines the constant we need. On my system it is included (via a few other files) by errno.h
It seems it is not by your system; can I suggest editing phone.h so that where it currently says:
#if HAVE_ERRNO_H
#include <errno.h>
#endif
You make it instead say:
#if HAVE_ERRNO_H
#include <asm/errno.h>
#include...
2005-08-30 13:21:10 UTC in x70talk
-
OK, well I can't think why the headers would differ significantly from mine (they probably don't) so we'll just have to try to investigate as best we can.
I think that the file which will define the value is a part of the linux kernel headers - could you check to see if the appropriate package is installed on your system? If not try installing it. I think the package will look something like...
2005-08-28 15:55:11 UTC in x70talk
-
Hmmm, the line in question reads:
return ARGP_ERR_UNKNOWN;
ARGP_ERR_UNKNOWN is defined as E2BIG in argp.h. Not sure why this is not defined on your system... Could you tell me what Linux/Unix and compiler you are using?
You might try looking for the constant E2BIG in all of the system header files (under /usr/include) and adding the appropriate one in phone.h
I am away this weekend...
2005-08-26 17:01:45 UTC in x70talk
-
philwhineray committed patchset 22 of module x70talk to the x70talk CVS repository, changing 12 files.
2004-05-08 07:48:17 UTC in x70talk
-
philwhineray committed patchset 21 of module x70talk to the x70talk CVS repository, changing 6 files.
2004-05-02 11:30:36 UTC in x70talk
-
Well, you don't mention which compiler you are using, so how easy will depend in part on that. You need an appropriate config.h.
The latest code in CVS will cross-compile to Windows with mingw, but it doesn't work yet as there's no code to deal with Windows sockets, and opening vi a a COM port appears to fail (I suspect select() only works on sockets).
If you want to give it a try you'll...
2004-05-01 15:11:01 UTC in x70talk
-
philwhineray committed patchset 20 of module x70talk to the x70talk CVS repository, changing 8 files.
2004-05-01 15:06:09 UTC in x70talk
-
I'm afraid I have no idea if there is a near-equivalent on windows; probably not though, since you get the basic software for free.
In principle you could use x70talk on Windows, but the mechanism to open a bluetooth socket is rather more involved from what I can tell.
I'll maybe have a look at this over the coming weekend, but I don't have Windows at home, so I'd need to take the...
2004-04-28 18:45:48 UTC in x70talk