private void timeout()

in src/android/AccelListener.java [206:214]


    private void timeout() {
        if (this.status == AccelListener.STARTING &&
            this.accuracy >= SensorManager.SENSOR_STATUS_ACCURACY_MEDIUM) {
            // call win with latest cached position
            // but first check if cached position is reliable
            this.timestamp = System.currentTimeMillis();
            this.win();
        }
    }