Changes between Version 13 and Version 14 of Software/hDrivers
- Timestamp:
- May 31, 2016, 5:22:54 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Software/hDrivers
v13 v14 115 115 116 116 You only need to enter passthrough mode once. But it will require a device restart. The AT commands are: 117 {{{ 117 118 AT!ippassthrough=1 118 AT!reset 119 AT!reset 120 }}} 119 121 120 122 You can check if it's enabled by running: 121 123 {{{ 122 124 AT!ippassthrough? 123 125 }}} 124 126 If you get a 1 back, it's in pass through mode. Additionally the output of LSUSB is different, if you run it and get: 125 127 {{{ … … 142 144 The quotations are required for the entercnd line. The entercnd line is the equivalent of an enable command (enter privileged mode). 143 145 The latter command actually connects to the BS. It's disconnect counterpart is: 146 {{{ 144 147 AT!dxcfg=wwan,connect,0 148 }}} 145 149 146 150 You can verify on the device that the actual state is connected. Additionally: 151 {{{ 147 152 at!gstatus? 153 }}} 148 154 149 155 Will get you a status out put like: … … 305 311 {{{ 306 312 git clone git://git.osmocom.org/rtl-sdr.git 307 308 313 cd rtl-sdr/ 309 310 314 mkdir build 311 312 315 cd build 313 314 316 cmake ../ -DINSTALL_UDEV_RULES=ON 315 316 317 make 317 318 318 make install 319 320 319 ldconfig 321 322 320 cp ../rtl-sdr.rules /etc/udev/rules.d/ 323 321 }}}