Skip to content

Commit c979560

Browse files
authored
Fix/disable tts (#785)
2 parents ed8f47b + 7e41ef8 commit c979560

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

scripts/deploy/tasks/build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ def _build(self, connections: Group) -> GroupResult:
6262
:return: The results of the task.
6363
"""
6464
print_debug("Building packages")
65-
cmd = f"cd {self._remote_workspace} && pixi run --environment robot build {self._package}"
65+
66+
cmd = f"cd {self._remote_workspace} && chrt -r 1 taskset -c 0-9 pixi run --environment robot build {self._package}"
6667

6768
print_debug(f"Calling '{cmd}'")
6869
try:

src/bitbots_misc/bitbots_bringup/launch/teamplayer.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<arg name="world_model" default="true" description="Whether the world model should be started"/>
1515
<arg name="monitoring" default="true" description="Whether the system monitor and udp bridge should be started" />
1616
<arg name="record" default="false" description="Whether the ros bag recording should be started" />
17-
<arg name="tts" default="true" description="Whether to speak" />
17+
<arg name="tts" default="false" description="Whether to speak" />
1818
<arg name="whistle_detector" default="true" description="Whether to detect whistles"/>
1919
<arg unless="$(var sim)" name="fieldname" default="german_open_2026" description="Loads field settings (labor, webots, ...)." />
2020
<arg if="$(var sim)" name="fieldname" default="webots" description="Loads field settings (labor, webots, ...)." />

0 commit comments

Comments
 (0)