comparison LoadFile/load.teensy @ 307:ecd2ae35d25c

Initial commit for UARTConnect module * Keyboard interconnect using two uarts * Supports daisy chain addressing using a master/slave direction communication scheme - Still needs more testing - Functions have been tested alone to be generally working
author Jacob Alexander <haata@kiibohd.com>
date Sun, 15 Mar 2015 16:58:01 -0700
parents 71882cd1c362
children 99f93dec8fea
comparison
equal deleted inserted replaced
306:f158dfa0fa85 307:ecd2ae35d25c
67 EXIT_STATUS=$? 67 EXIT_STATUS=$?
68 68
69 # Load Screen Session if specified 69 # Load Screen Session if specified
70 if (( "$EXIT_STATUS" == "0" )) && [[ "$AUTO_SCREEN_SESSION" != "" ]]; then 70 if (( "$EXIT_STATUS" == "0" )) && [[ "$AUTO_SCREEN_SESSION" != "" ]]; then
71 if type screen &>/dev/null; then 71 if type screen &>/dev/null; then
72 sleep 0.1 72 sleep 2
73 screen $AUTO_SCREEN_SESSION 73 screen $AUTO_SCREEN_SESSION
74 else 74 else
75 echo "screen is not installed" 75 echo "screen is not installed"
76 exit 3 76 exit 3
77 fi 77 fi