2013-06-24 62 views
0

我試圖到WiFi屏蔽固件升級按照提供 http://arduino.cc/en/Hacking/WiFiShieldFirmwareUpgrading更新的Arduino無線上網屏蔽固件更新

的指示,但我得到了messege作爲

[email protected]:/home/joms/arduino-1.0.5/hardware/arduino/firmwares/wifishield/scripts#  ./ArduinoWifiShield_upgrade.sh -f all 

    Arduino WiFi Shield upgrade 
========================================= 
Instructions: 
To access to the USB devices correctly, the dfu-programmer needs to have the root   permissions. 

You can upgrade the firmware of the antenna togheter with the shield firmware or only the shield firmware 
if there aren't changes on the antenna firmware. 
    Use the '-h' parameter for help 
========================================= 

如何爲提供root權限我安裝的dfu程序員

sudo apt-get install dfu-programmer 

如果這是問題???或者我應該試試別的

+0

該指令要求'sudo apt-get install dfu-programme'。最後沒有'r'。這可能是問題嗎? – user2461391

+0

我認爲這是錯字dfu程序不會鍛鍊 – user2382401

回答

1

你需要使用sudo運行腳本:

sudo ./ArduinoWifiShield_upgrade.sh -f all 

你也將需要的路徑添加到您的Arduino IDE文件與-a開關(它必須是前-f開關),所以:

sudo ./ArduinoWifiShield_upgrade.sh -a PATH/TO/ARDUINO/FILES -f all 

與路徑,你必須提取Arduino的文件替換PATH/TO/ARDUINO /文件。

+0

這是否回答您的問題?如果不是,如果您提供更多信息,但如果確實如此,我可以嘗試提供幫助,請將其投票並將其標記爲正確答案。謝謝。 – Lior

+0

謝謝!在Mac上爲我工作! – DrJay