Changes between Version 13 and Version 14 of Software/hDrivers


Ignore:
Timestamp:
May 31, 2016, 5:22:54 PM (8 years ago)
Author:
msherman
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Software/hDrivers

    v13 v14  
    115115
    116116You only need to enter passthrough mode once.  But it will require a device restart. The AT commands are:
     117{{{
    117118AT!ippassthrough=1
    118 AT!reset
     119AT!reset
     120}}}
    119121
    120122You can check if it's enabled by running:
    121 
     123{{{
    122124AT!ippassthrough?
    123 
     125}}}
    124126If you get a 1 back, it's in pass through mode. Additionally the output of LSUSB is different, if you run it and get:
    125127{{{
     
    142144The quotations are required for the entercnd line. The entercnd line is the equivalent of an enable command (enter privileged mode).
    143145The latter command actually connects to the BS. It's disconnect counterpart is:
     146{{{
    144147AT!dxcfg=wwan,connect,0
     148}}}
    145149
    146150You can verify on the device that the actual state is connected. Additionally:
     151{{{
    147152at!gstatus?
     153}}}
    148154
    149155Will get you a status out put like:
     
    305311{{{
    306312git clone git://git.osmocom.org/rtl-sdr.git
    307 
    308313cd rtl-sdr/
    309 
    310314mkdir build
    311 
    312315cd build
    313 
    314316cmake ../ -DINSTALL_UDEV_RULES=ON
    315 
    316317make
    317 
    318318make install
    319 
    320319ldconfig
    321 
    322320cp ../rtl-sdr.rules /etc/udev/rules.d/
    323321}}}