Changeset 6731 in ntrip
- Timestamp:
- Mar 26, 2015, 11:00:43 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncfigureppp.cpp
r5954 r6731 80 80 81 81 bncSettings settings; 82 83 _audioResponseThreshold = settings.value("PPP/audioResponse").toDouble(); 84 82 85 if (settings.value("PPP/plotCoordinates").toByteArray() != staID) { 83 86 return; … … 170 173 double t1 = _tMin + (_pos[ii-1]->time - _pos[0]->time); 171 174 double t2 = _tMin + (_pos[ii]->time - _pos[0]->time); 175 176 // Audio response 177 // -------------- 178 if ( ii == _pos.size()-1) { 179 if ( _audioResponseThreshold > 0.0 && 180 (fabs(neu[ii-1][0]) > _audioResponseThreshold || 181 fabs(neu[ii-1][1]) > _audioResponseThreshold) ) { 182 QApplication::beep(); 183 } 184 } 172 185 173 186 // dots
Note:
See TracChangeset
for help on using the changeset viewer.