rigol_scope/Readme.md

23 lines
494 B
Markdown
Raw Permalink Normal View History

2024-07-16 16:49:39 +00:00
# Rigol
2024-01-17 22:11:23 +00:00
Script from the EEVBlog, that will activate all options on a rigol scope.
## Usage:
```
2024-07-16 16:49:39 +00:00
python3 license_upgrade.py 192.168.1.142
2024-01-17 22:11:23 +00:00
```
I had to force enable overwriting the key:
```python
def main(ip_addr):
[..]
prev_key = False
[..]
# ELHER necessary due to different key on my scope.
if len(new_key) < 388:
new_key += (388 - len(new_key)) * b"\xaa"
[..]
```
And reboot the scope and run again. Maybe it is not necessary and the reboot fixed the key?