Dr. Johannes Zellner | 1 May 2007 23:29

obexftp via Nokia cable ca-53

Hi,

how do I use a Nokia ca-53 cable to connect to my N6233 phone (running
obexftp from Linux?)

--

-- 
Dr. Johannes Zellner <johannes <at> zellner.org>

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Christian W. Zuckschwerdt | 2 May 2007 00:03

Re: obexftp via Nokia cable ca-53

Hi,

serial cables for Nokia phones are not supported. I have basic
information on how to add support but still need wither: (order of
preference)

- Protocol details (from Nokia)
- Access to a Nokia phone and a serial cable
- Logs of a serial obex session from some Nokia phone

regards,
Christian

Dr. Johannes Zellner schrieb:
> how do I use a Nokia ca-53 cable to connect to my N6233 phone (running
> obexftp from Linux?)

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Hendrik Sattler | 2 May 2007 00:17
Picon

Re: obexftp via Nokia cable ca-53

Am Mittwoch 02 Mai 2007 00:03 schrieb Christian W. Zuckschwerdt:
> serial cables for Nokia phones are not supported. I have basic
> information on how to add support but still need wither: (order of
> preference)
>
> - Protocol details (from Nokia)
> - Access to a Nokia phone and a serial cable
> - Logs of a serial obex session from some Nokia phone

Shouldn't gnokii provide libs for such things? Their wiki has some information 
about the CA-53 cable.

HS

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Christian W. Zuckschwerdt | 2 May 2007 00:27

Re: obexftp via Nokia cable ca-53

Hi Hendrik,

I had a brief look before posting, but couldn't figure out if they were
doing obex over serial. Basicly it's a DKU-2 type cable to custom(?)
chips in the actual phone. There is a nokia_dku2 driver, but I think
we'd need a OBEX-over-AT protocol on top of that.  Most people seem
interested in just IrDA and BT anyway.

regards,
Christian

Hendrik Sattler schrieb:
> Shouldn't gnokii provide libs for such things? Their wiki has some information 
> about the CA-53 cable.
>   

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Alex Kanavin | 2 May 2007 12:05

Re: obexftp via Nokia cable ca-53

Uhm, you are all confused. :) CA-53 cable does not require special
drivers, the phone should expose normal USB obex interfaces through
it. Johannes can post the output of lsusb -v so I can confirm this.

Alex

2007/5/2, Christian W. Zuckschwerdt <Christian <at> zuckschwerdt.org>:
> Hi Hendrik,
>
> I had a brief look before posting, but couldn't figure out if they were
> doing obex over serial. Basicly it's a DKU-2 type cable to custom(?)
> chips in the actual phone. There is a nokia_dku2 driver, but I think
> we'd need a OBEX-over-AT protocol on top of that.  Most people seem
> interested in just IrDA and BT anyway.
>
>
> regards,
> Christian
>
> Hendrik Sattler schrieb:
> > Shouldn't gnokii provide libs for such things? Their wiki has some information
> > about the CA-53 cable.
> >
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
(Continue reading)

Christian W. Zuckschwerdt | 2 May 2007 15:01

Re: [Openobex-commit] openobex acinclude.m4, 1.20, 1.21

Hi,

Stanislav's fix looks good. What about the mingw32 target, do we need a
conditional or should we perhaps check the USB_LIBS variable?

regards,
Christian

Christian W. Zuckschwerdt schrieb:
> Modified Files:
> 	acinclude.m4 
> Log Message:
> libusb check fix by Stanislav Brabec
>
> --- acinclude.m4	31 Dec 2006 15:09:26 -0000	1.20
> +++ acinclude.m4	2 May 2007 12:55:32 -0000	1.21
>  <at>  <at>  -202,7 +202,7  <at>  <at> 
>  
>  	if (test "${usb_enable}" = "yes" && test "${usb_found}" = "yes"); then
>  		AC_DEFINE(HAVE_USB, 1, [Define if system supports USB and it's enabled])
> -		AC_CHECK_FILE(${prefix}/lib/pkgconfig/libusb.pc, REQUIRES="libusb")
> +		PKG_CHECK_EXISTS(libusb, [REQUIRES="libusb"])
>  	fi
>   

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
(Continue reading)

Marcel Holtmann | 2 May 2007 15:40

Re: [Openobex-commit] openobex acinclude.m4, 1.20, 1.21

Hi Christian,

> Stanislav's fix looks good. What about the mingw32 target, do we need a
> conditional or should we perhaps check the USB_LIBS variable?

no it does not look good and is totally wrong. Please revert it. The
PKG_CHECK_MODULES is fully sufficient. This extra check is for
openobex.pc.in and has nothing to do with libusb detection.

Changes to the autoconf/automake files of OpenOBEX need to be discussed
on the mailing list first. He mailed me in private and rejected his
patch and now you applied it.

Regards

Marcel

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Christian W. Zuckschwerdt | 2 May 2007 16:40

Re: openobex acinclude.m4

Hi Marcel,

sorry, I'm confused. Can you explain a bit further why a check for
${prefix}/lib/pkgconfig/libusb.pc is better than a check with
PKG_CHECK_EXISTS? The result is the same,  REQUIRES="libusb" being set,
right?

I'll revert it never the less while it is under discussion.

regards,
Christian

Marcel Holtmann schrieb:
> no it does not look good and is totally wrong. Please revert it. The
> PKG_CHECK_MODULES is fully sufficient. This extra check is for
> openobex.pc.in and has nothing to do with libusb detection.
>   

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Christian W. Zuckschwerdt | 2 May 2007 17:30

Re: Openobex-users Digest, Vol 11, Issue 7

Hi,

a basic ObexFTP C client example is now available.

http://dev.zuckschwerdt.org/openobex/wiki/ObexFtpExampleClientC

This is an example for bluetooth only and without discovery.

regards,
Christian

msaglietto <at> y2knetworks.com.ar schrieb:
> not using automake or autoconf... is a basic C program
> using bluez to discover and send file to certain
> device, then i get the MAC, with sdp i get the channel of OBEX

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
Hendrik Sattler | 2 May 2007 18:06
Picon

Re: openobex acinclude.m4

Am Mittwoch 02 Mai 2007 16:40 schrieb Christian W. Zuckschwerdt:
> sorry, I'm confused. Can you explain a bit further why a check for
> ${prefix}/lib/pkgconfig/libusb.pc is better than a check with
> PKG_CHECK_EXISTS? The result is the same,  REQUIRES="libusb" being set,
> right?

In the openobex pkgconfig file, you may either depend on the usb module in 
Requires.private or you must define -lusb in CFLAGS.private, depending on the 
version of libusb.

Hint: pkgconfig support in libusb is not very old and the libusb-win32 doesn't 
have it at all.

When searching for libs, you _may_ use the data from a libusb.pc file, but you 
should search for the lib with the usual autoconf macros, anyway.
Requiring libusb.pc will break the win32 port, at least.

HS

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

Gmane