You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/troubleshooting.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,29 +1,36 @@
1
1
# Troubleshooting
2
2
3
+
3
4
## No Microphone Input
4
5
*For beta only*
5
6
6
-
There is a known issue where the microphone may not initialize correctly. The best way to resolve this is to reboot the microphone array using [xvf_host](https://github.com/respeaker/reSpeaker_XVF3800_USB_4MIC_ARRAY/tree/master/host_control):
7
+
There is a known issue where the microphone may not initialize correctly. You can use the `--fix-audio` argument to force the audio card to reset before starting the daemon.
8
+
9
+
Make sure your firmware is updated to version 2.1.2. You may need to run the [update script](../src/reachy_mini/assets/firmware/update.sh). Linux users should also install the proper udev rules using [this script](../src/reachy_mini/assets/firmware/install_udev_rules.sh). Then run:
7
10
8
11
```bash
9
-
xvf_host(.exe) REBOOT 1
12
+
reachy-mini-daemon --fix-audio
10
13
```
11
14
12
-
Then run [examples/debug/sound_record.py](../examples/debug/sound_record.py) to check that everything is working properly.
15
+
Afterwards, run [examples/debug/sound_record.py](../examples/debug/sound_record.py) to check that everything is working properly.
13
16
14
17
If the problem persists, check the connection of the flex cables ([see slides 45 to 47](https://huggingface.co/spaces/pollen-robotics/Reachy_Mini_Assembly_Guide)).
15
18
19
+
16
20
## Sound Direction of Arrival Not Working
17
21
*For beta only*
18
22
19
-
The microphone array requires firmware version 2.1.0 or higher to support this feature. The firmware is located in `src/reachy_mini/assets/firmware/*.bin`.
23
+
The microphone array requires firmware version 2.1.0 or higher to support this feature. The firmware files are located in `src/reachy_mini/assets/firmware/*.bin`.
20
24
21
25
Refer to the [Seeed documentation](https://wiki.seeedstudio.com/respeaker_xvf3800_introduction/#update-firmware) for the upgrade process.
22
26
27
+
A [helper script](../src/reachy_mini/assets/firmware/update.sh) is available for Unix users.
28
+
29
+
23
30
## Volume Is Too Low
24
31
*Linux only*
25
32
26
-
Check with`alsamixer` that PCM1 is set to 100%. Then use PCM,0 to adjust the volume.
33
+
Check in`alsamixer` that PCM1 is set to 100%. Then use PCM,0 to adjust the volume.
27
34
28
35
To make this change permanent:
29
36
```bash
@@ -32,6 +39,7 @@ amixer -c "$CARD" set PCM,1 100%
32
39
sudo alsactl store "$CARD"
33
40
```
34
41
42
+
35
43
## Circular Buffer Overrun Warning
36
44
37
45
When starting a client with `with ReachyMini() as mini:` in Mujoco (--sim mode), you may see the following warning:
0 commit comments