'QtMoko v35'

Radek Polak psonek2 at seznam.cz
Fri Nov 25 20:50:47 CET 2011


On Friday 25 of November 2011 13:26:13 Dmitry Popov wrote:

> Hi to ALL
> 
> how to call in qtmoko via console ?
> 
> #caller +XXXXXXXXX
> 
> please send links or other manuals.

You will probably need some effor to achieve that. There are several ways you 
can try:

- qtmoko v36 can use FSO framework which technically means that modem can be 
controlled over dbus. You will find docs on freesmartphone.org

- you can write quite simple qtmoko program (can be console app) which uses 
QPhoneCall to do the call:

    QPhoneCallManager mgr;
    QPhoneCall call = mgr.create( "Voice" );

    QDialOptions dialOptions;
    dialOptions.setNumber( "1234567" );
    call.dial( dialOptions );

see https://github.com/radekp/qtmoko/blob/master/doc/html/qphonecall.html

- the ugly way which might not work is to send ATD to modem. Something like 
described here:

http://wiki.openmoko.org/wiki/Manually_using_GSM

Regards

Radek



More information about the community mailing list