Index: UI/BETA/scripts/_errors_ =================================================================== diff -u -r8d96dcc7e54c3577a9e657b1e6c4c8c08a4fb53c -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c --- UI/BETA/scripts/_errors_ (.../_errors_) (revision 8d96dcc7e54c3577a9e657b1e6c4c8c08a4fb53c) +++ UI/BETA/scripts/_errors_ (.../_errors_) (revision c3e1c9204700f3f7ba8e7da2d5b6098cf133849c) @@ -38,6 +38,7 @@ ERR_GENERAL_SCRIPT_PARAM_COUNT=2 ERR_GENERAL_SCRIPT_EMPTY_STRING=3 ERR_GENERAL_SCRIPT_FILE_EXIST=4 +ERR_GENERAL_NO_SD_CARD=5 # 1x: Empty parameters ERR_MTPARAM_WIFI_SSID=10 Index: UI/BETA/scripts/_functions_ =================================================================== diff -u -r8d96dcc7e54c3577a9e657b1e6c4c8c08a4fb53c -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c --- UI/BETA/scripts/_functions_ (.../_functions_) (revision 8d96dcc7e54c3577a9e657b1e6c4c8c08a4fb53c) +++ UI/BETA/scripts/_functions_ (.../_functions_) (revision c3e1c9204700f3f7ba8e7da2d5b6098cf133849c) @@ -28,6 +28,7 @@ # sources . ./_errors_ +. ./_variables_ # functions @@ -174,3 +175,22 @@ "$ERR_CMDFAIL_USB_FOLDER_REMOVE" ) echo "usb mount point '$2' cannot be removed." ;; esac } + +echo_dash_comment() { + echo "$COMMENT_DASH"" $1 " +} + +echo_dash_message() { + echo " $1" +} + +function confirm() { + read -p "$1? [y,n]" -n 1 -r CONTINUE + if [ "$CONTINUE" == "y" ]; then + echo "" + return $TRUE + else + echo "" + return $FALSE + fi +} Index: UI/BETA/scripts/_variables_ =================================================================== diff -u -r8d96dcc7e54c3577a9e657b1e6c4c8c08a4fb53c -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c --- UI/BETA/scripts/_variables_ (.../_variables_) (revision 8d96dcc7e54c3577a9e657b1e6c4c8c08a4fb53c) +++ UI/BETA/scripts/_variables_ (.../_variables_) (revision c3e1c9204700f3f7ba8e7da2d5b6098cf133849c) @@ -28,4 +28,20 @@ # sources # variables +TRUE=1 +FALSE=0 +COMMENT_DASH="--------------------------------------------------------------------------------" + +## Brightness BRIGHTNESS_SYSFS="/sys/class/backlight/lvds_backlight/brightness" + +## SD-Card +SDCARD_DEV=/dev/mmcblk1 +SDCARD_PRT=/dev/mmcblk1p1 +SDCARD_MNT=/media/sd-card +SDCARD_TYP_NAME=ext4 +SDCARD_TYP_NUMB=83 + +CMD_SDCARD_DEV="ls $SDCARD_DEV" +CMD_SDCARD_PRT="ls $SDCARD_PRT" +CMD_LINUX_TYPE="sfdisk --part-type $SDCARD_DEV 1" Index: UI/BETA/scripts/run.sh =================================================================== diff -u --- UI/BETA/scripts/run.sh (revision 0) +++ UI/BETA/scripts/run.sh (revision c3e1c9204700f3f7ba8e7da2d5b6098cf133849c) @@ -0,0 +1,39 @@ +#!/bin/sh + +export P_CANBUS="can0" +export SSID_NAME="DilaityIoT" +export SSID_PASS="E6ACB9855B948EC3" +export TEMP=/tmp +export WORKSPACE=/opt/leahi +export LOGFILE=$TEMP/leahi.manufacturing.log +export DATE="date +%Y%m%d%H%M%S" + +# the application needs this variable to be correctly set to susccessfully launch. +# the egls.json file shall also correctly set and put in the pointing location. +export QT_QPA_EGLFS_KMS_CONFIG=$WORKSPACE/eglfs.json + +# TODO: +# 1 - separate the run.sh and the application service ( and even the cloudsync too ) +# 2 - mv LOGNAME post.log +# + +echo "" > $LOGFILE 2>&1 + +ethtool -s eth0 speed 100 duplex full autoneg on >> $LOGFILE 2>&1 + +timedatectl set-timezone America/Los_Angeles >> $LOGFILE 2>&1 +timedatectl set-ntp 1 >> $LOGFILE 2>&1 +echo "[$($DATE)] Starting" >> $LOGFILE 2>&1 + +echo "[$($DATE)] Configuring the canbus '$P_CANBUS'" >> $LOGFILE 2>&1 +ip link set $P_CANBUS up type can bitrate 250000 >> $LOGFILE 2>&1 +ifconfig $P_CANBUS txqueuelen 4000 >> $LOGFILE 2>&1 +ifconfig $P_CANBUS up >> $LOGFILE 2>&1 + +echo "[$($DATE)] Configuring wifi '$SSID_NAME' connection" >> $LOGFILE 2>&1 +nmcli dev wifi connect "$SSID_NAME" password "$SSID_PASS" >> $LOGFILE 2>&1 + +cd $WORKSPACE +echo "[$($DATE)] Application starting in '$(pwd)'" >> $LOGFILE 2>&1 +$WORKSPACE/leahi --platform eglfs >> $LOGFILE 2>&1 & # -E removed for using -L for testing Leahi FW communication +echo "[$($DATE)] Application launched" >> $LOGFILE 2>&1 Index: UI/BETA/scripts/sd-format.sh =================================================================== diff -u --- UI/BETA/scripts/sd-format.sh (revision 0) +++ UI/BETA/scripts/sd-format.sh (revision c3e1c9204700f3f7ba8e7da2d5b6098cf133849c) @@ -0,0 +1,95 @@ +#!/bin/sh +########################################################################### +# +# Copyright (c) 2020-2023 Diality Inc. - All Rights Reserved. +# +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# +# @file setup.sh +# +# @author (last) Behrouz NematiPour +# @date (last) 16-Dec-2022 +# @author (original) Behrouz NematiPour +# @date (original) 13-Mar-2020 +# +############################################################################ + +# @details +# This script is part of setting up the newly flashed SoM which will run on the device +# after the start.sh script is done copying files on the device. + +# sources +. ./_errors_ +. ./_functions_ +. ./_variables_ + +function check_sdcard() { + while true; do + if [ ! "$($CMD_SDCARD_DEV)" == "$SDCARD_DEV" ];then # if no SD-Card found ask operator to install on and retry after power-cycle. + echo_dash_comment + echo_dash_message "No SD-Card detected" + echo_dash_message "UI Software logging will not work without a SD-Card" + echo_dash_message "Insert a SD-Card and continue when ready" + echo_dash_comment + confirm "Continue" + if [ $? -eq $FALSE ]; then + exit $ERR_GENERAL_NO_SD_CARD + fi + else + break + fi + done + + if [ ! "$($CMD_SDCARD_PRT)" == "$SDCARD_PRT" ]; then return $FALSE; fi # if partition 1 doesn't exist , do the format + if [ ! "$($CMD_LINUX_TYPE)" == "$SDCARD_TYP_NUMB" ]; then return $FALSE; fi # if partition 1 type is not Linux(83) , do the format + return $TRUE # otherwise , do not format +} + +function format_sdcard() { + check_sdcard + if [ $? -eq $TRUE ]; then # if sd-card is OK + echo "Found the SD-Card $SDCARD_DEV" + confirm "Do you want to format the SD-Card" + if [ $? -eq $FALSE ]; then # give user an option to skip the format + return $? + fi + fi + + while true; do + echo "Unmount the SD-Card if is in use" + umount "$SDCARD_PRT" + if [ ! "$( mount | grep $SDCARD_PRT)" == "" ]; then # is still mounted + if [ $? -eq $FALSE ]; then # if SD-Card cannot the unmounted then stop the format. + echo "The SD-Card $SDCARD_DEV cannot be unmounted, therefore cannot be formatted" + confirm "Do you want to retry?" + if [ $? -eq $FALSE ]; then + return $FALSE # do not continue with format + fi + else + break + fi + else + break + fi + done + + echo "Removing current partitions" + sfdisk --delete $SDCARD_DEV 1>/dev/null 2>/dev/null + echo "Create new partition" + echo "label:MBR" | sfdisk $SDCARD_DEV 1>/dev/null 2>/dev/null + echo "type=83" | sfdisk $SDCARD_DEV 1>/dev/null 2>/dev/null + echo "Create a ext4 file system" + mkfs.ext4 $SDCARD_PRT -L "Denali_Log" -F # 1>/dev/null 2>/dev/null + + check_sdcard + if [ $? -eq $TRUE ]; then + echo "SD-Card format PASSED" + else + echo "SD-Card format FAILED !!!" + fi +} + +format_sdcard + +exit 0 Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Alarms/Alarms.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Alarms/Alarms_es.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Alarms/Events.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Alarms/Events_es.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Alarms/Rejections.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Alarms/Rejections_es.conf'. Fisheye: No comparison available. Pass `N' to diff? Index: configurations/Alarms/moda-fix.jpg =================================================================== diff -u -r33ce323edd28935192fdb15010fd51eaa610aa58 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Confirm/Confirm.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Confirm/Confirm_es.conf'. Fisheye: No comparison available. Pass `N' to diff? Index: configurations/Instructions/10_install acid line.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/11_install bicarb line.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/12_replace dialysate line cap.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/13_remove acid and bicarb connect.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/14_connect PAA.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/15_disconnect PAA.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/16_connect dialysate lines to DG.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/17_dialysate sample.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/18_disconect dialysate lines from DG.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/19_insert dialyzer.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/1_HD door open-01.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/20_connect blood lines to dialyzer.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/21_connect dialysate lines to dialyzer.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/22_PBA connection.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/23_PBo connection.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/24_PBo and PBA removal.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/25_fill syringe with heparin.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/26_load syringe.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/27_pinch syringe clamp_NOT_USED.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/28_remove syringe.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/29_spike and hang saline bag.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/2_HD door closed-01.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/30_clamping Y connecter_NOT_USED.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/31_connect arterial and venous lines to patient.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/32_unpinch arterial and venous for blood prime.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/33_disconnect arterial lines.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/34_remove recirc connector.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/35_connect saline y.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/36_clamp arterial saline line_NOT_USED.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/37_unclamp arterial saline line_NOT_USED.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/38_unclamp saline lines.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/39_test residual sample_NOT_USED.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/3_insert casette-01.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/40_water test fail.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/41_water test pass_NOTE_USED.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/42_water test pass fail.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/43_wash hands.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/44_treatment date to Web_NOT_USED.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/45_denali system.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/46_install caps.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/47_remove DG caps.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/48_disconnect saline y.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/49_clamp venous chamber line.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/4_loop casette tubes-01.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/50_clamp_heparin.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/51_shunt patient lines.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/52_invert_dialyzer.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/53_pinch saline line and y connector.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/54_unpinch saline and clamped y connector.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/55_Blood Sample_NOT_USED.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/56_clamp shunted patient lines.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/57_pinch fistula and cartridge patient lines_NOT_USED.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/58_end treatment connect venous to sampling port.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/59_install concentrate caps.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/5_remove casette-01.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/60_recirc shunt patient lines.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/61_recirc recirculating pumps.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/62_recirc unclamp recirc lines.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/63_disconnect venous lines.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/64_rinseback clamp arterial and saline lines.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/65_recirc stop TEMP.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/66_hd door close with cart.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/67_hd door open with cart.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/68_pump track lock without cart.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/69_pump track open without cart.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/6_Pump track lock-01.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/70_PBa connection Rev02.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/71_rinseback arterial re-connect.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/7_pump track open-01.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/8_pump track unlock.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/9_remove left cap-01.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/9_water sampling.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Concentrates_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Concentrates_2.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Connect_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Connect_2.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Connect_3.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Connect_4.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Connect_Advanced_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Install_Advanced_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Install_Advanced_2.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_BloodTube_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_BloodTube_2.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_BloodTube_3.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_BloodTube_4.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_Bloodlines_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_Bloodlines_2.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_Bloodlines_3.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_Bloodlines_4.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_Bloodlines_5.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_CPLD_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_CPLD_2.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_CPLD_3.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_CPLD_4.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_CPLD_5.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Installation_CPLD_6.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Instructions/Instructions.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Instructions/Instructions_es.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Instructions/Instructions_es.conf~'. Fisheye: No comparison available. Pass `N' to diff? Index: configurations/Instructions/Return_Blood_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Return_Blood_2.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Return_Blood_3.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Saline_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Saline_2.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Saline_3.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Saline_4.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/Water_Sample_1.png =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Index: configurations/Instructions/logo.png =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Messages/Unhandled.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Parameters/DataList.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Parameters/DataList_es.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Settings/System.conf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Settings/System.conf~'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `configurations/Settings/System.dflt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `eglfs.json'. Fisheye: No comparison available. Pass `N' to diff? Index: leahi =================================================================== diff -u -rbcafc1d20046aaf42e7f697f9c33376e0b6b6126 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `leahi.service'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `readme.md'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `run.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/_errors_'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/_functions_'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/_variables_'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/bluetooth_paired_clear.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/brightness.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/date_time_set.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/factory_reset.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/rootsshaccess.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/run.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/sd-format.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/test.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/usb_mount.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/usb_unmount.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/wifi_connect.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/wifi_disconnect.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/wifi_disconnect_network.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/wifi_info.sh'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `scripts/wifi_scan.sh'. Fisheye: No comparison available. Pass `N' to diff? Index: translations/translation_de.qm =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `translations/translation_de.ts'. Fisheye: No comparison available. Pass `N' to diff? Index: translations/translation_es.qm =================================================================== diff -u -r65465f788ce5d6cc7cdfdaf270650a22ed8c39f6 -rc3e1c9204700f3f7ba8e7da2d5b6098cf133849c Binary files differ Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `translations/translation_es.ts'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag c3e1c9204700f3f7ba8e7da2d5b6098cf133849c refers to a dead (removed) revision in file `update.sh'. Fisheye: No comparison available. Pass `N' to diff?