-
Notifications
You must be signed in to change notification settings - Fork 8
Configuration_en
Configuration contents
First, you could search devices use -s
or --search
option.
$ python wizconfig.py -s
And then mac_list.txt
is created, there is MAC address information of each device.
mac_list.txt
file will be used when multi-device configuration. (-a or -m or other options)
First, find the option(s) for you want to set from Options.
And then config the device(s) use following command.
- Single Device
$ python wizconfig.py -d 00:08:DC:XX:XX:XX [Options ...]
- Multiple Devices
$ python wizconfig.py -a [Options ...]
To upload a device's firmware, need to setup TCP connection with the device to send Firmware file.
So first, use -m/--multiset
option for set IP address to the same network-band as host.
$ python wizconfig.py -m <IP address>
Next, prepare the firmware file. You must use App Boot firmware file when doing this.
The Configuration Tool only supports App firmware updates. You need to use ISP Tool to update Boot+App firmware.
To download firmware binary file, refer below link.
If the file is ready, perform the F/W update with the following command:
- Single device
$ python wizconfig.py -d 00:08:DC:XX:XX:XX -u <F/W file path>
- Multiple devices
$ python wizconfig.py -a -u <F/W file path>
Upload Example
Confirm your host PC network band and set IP address to update multiple devices.
Next, you have to perform search with -s/--search
option before upload because -m/--multiset
command use the mac_list.txt
file.
If your host PC use IP '192.168.0.X',
# Search devices
$ python wizconfig.py -s
# Setting Multiple devices
$ python wizconfig.py -m 192.168.0.100
This is example. You can use any IP address that not used, instead of '100'.
- Single device F/W upload (if mac address is '00:08:DC:AA:BB:CC')
$ python wizconfig.py -d 00:08:DC:AA:BB:CC -u W7500x_S2E_App.bin
- Multiple devices F/W upload (in mac_list.txt)
$ python wizconfig.py -a -u W7500x_S2E_App.bin