Skip to content

Commit

Permalink
core: start-blueos-core: Remove memory limit for some non critical se…
Browse files Browse the repository at this point in the history
…rvices

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
  • Loading branch information
patrickelectric committed Mar 21, 2024
1 parent 6095183 commit c9ef1f7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/start-blueos-core
Expand Up @@ -95,9 +95,11 @@ PRIORITY_SERVICES=(
)

SERVICES=(
# This services are not prioritized because they are not fundamental for the vehicle to work
'kraken',0,"nice -19 $SERVICES_PATH/kraken/main.py"
'wifi',0,"nice -19 $SERVICES_PATH/wifi/main.py --socket wlan0"
# This services are not as important as the others
'beacon',250,"$SERVICES_PATH/beacon/main.py"
'kraken',250,"nice -19 $SERVICES_PATH/kraken/main.py"
'wifi',250,"nice -19 $SERVICES_PATH/wifi/main.py --socket wlan0"
'bridget',250,"nice -19 $SERVICES_PATH/bridget/main.py"
'commander',250,"$SERVICES_PATH/commander/main.py"
'nmea_injector',250,"nice -19 $SERVICES_PATH/nmea_injector/nmea_injector/main.py"
Expand Down

0 comments on commit c9ef1f7

Please sign in to comment.