Skip to content

Commit

Permalink
Update README.md + increase timeout for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jopohl committed Mar 24, 2020
1 parent 63a4c83 commit 70125b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ sudo udevadm control --reload-rules
Make sure your current user is in the ```plugdev``` group to make these rules work.
You find rules for other SDRs by searching for "```<SDR name>``` udev rules" in your favorite search engine.

If you still have problems accessing your SDR the Linux __USB autosuspend__ feature might be interfering.
You can disable it by editing your ```/etc/default/grub``` as shown [here](https://unix.stackexchange.com/a/175035).

#### Install via Package Manager
URH is included in the repositories of many linux distributions such as __Arch Linux__, __Gentoo__, __Fedora__, __openSUSE__ or __NixOS__. There is also a package for __FreeBSD__. If available, simply use your package manager to install URH.

Expand Down
2 changes: 1 addition & 1 deletion tests/test_continuous_modulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_modulate_continuously(self):
self.assertTrue(continuous_modulator.ring_buffer.is_empty)
continuous_modulator.start()
self.assertTrue(continuous_modulator.process.is_alive())
time.sleep(1)
time.sleep(1.5)
self.assertFalse(continuous_modulator.ring_buffer.is_empty)
continuous_modulator.stop()
self.assertFalse(continuous_modulator.process.is_alive())
Expand Down

0 comments on commit 70125b9

Please sign in to comment.