Can Netgear WGR614 v7 be used as a wireless bridge?

225

There is no chance putting third-party firmware on the v7 (short of replacing the flash chips, definitely not worth it). The v7 runs VXWorks, has 1MB or 2MB flash and 8MB of memory. You may be better to pick up a $20 wireless bridge from another source (I just ordered 3 Planex 802.11 N access points from Amazon for a total of $85) or just get a wireless PCI/USB device from eBay or a similar source.

Share:
225

Related videos on Youtube

Ben Derham
Author by

Ben Derham

Mostly harmless.

Updated on September 18, 2022

Comments

  • Ben Derham
    Ben Derham over 1 year

    I am trying to render a .obj file to a page using threeJS. I have converted my file to .json using the convert_to_threejs.py script, no errors were reported during the conversion.

    Now loading in the .json file using:

    var loader = new THREE.SceneLoader();
    loader.load('../models/testShape.json');    
    

    This then gives me the following console error:

    "THREE.WebGLRenderer" "69"
    "Deprecated file format."
     THREE.SceneLoader.prototype.load/xhr.onreadystatechange() - Line 38 of SceneLoader.js
    

    This is happening with different .obj or .dae files, including examples from the threejs website.

    Any help much appreciated.