summaryrefslogtreecommitdiff
path: root/check-stack
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-04-20 23:33:41 -0700
committerKeith Packard <keithp@keithp.com>2009-04-20 23:33:41 -0700
commit43c8f7012102cdb591ace899420c10e4a78385ad (patch)
tree6ce45d0a58b1133961acd3cda3f3be21fef085b4 /check-stack
parent5be13b76a2e29b84cd6d1eec065e3354b0dafce5 (diff)
Add radio support. Build separate executables for TeleMetrum and the TI dongle
Ok, way too big a patch, but things were in rough shape. This patch adds support for the radio, both transmit and receive. Then, because I could no longer run the TeleMetrum code on the TI dongle, I ended up building a separate image for the TI board, which involved creating a mechanism for having multiple command sets and splitting code for different functions into different files.
Diffstat (limited to 'check-stack')
-rwxr-xr-xcheck-stack8
1 files changed, 4 insertions, 4 deletions
diff --git a/check-stack b/check-stack
index d93e8e44..6d3106a8 100755
--- a/check-stack
+++ b/check-stack
@@ -2,11 +2,11 @@
HEADER=$1
MEM=$2
-HEADER_STACK=`awk '/#define AO_STACK_START/ {print $3}' $HEADER`
-MEM_STACK=`awk '/Stack starts at/ {print $4}' $MEM`
+HEADER_STACK=`awk '/#define AO_STACK_START/ {print $3}' $HEADER | nickle`
+MEM_STACK=`awk '/Stack starts at/ {print $4}' $MEM | nickle`
-if [ "$HEADER_STACK" != "$MEM_STACK" ]; then
- echo "Set AO_STACK_START to $MEM_STACK"
+if [ "$HEADER_STACK" -lt "$MEM_STACK" ]; then
+ echo "Set AO_STACK_START to at least $MEM_STACK"
exit 1
else
exit 0