summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Knispel <gknispel@avencall.com>2012-09-12 16:49:09 +0200
committerGuillaume Knispel <gknispel@avencall.com>2012-09-12 16:49:09 +0200
commitfa659c81431f99389b3782040200f8180ba01a3d (patch)
tree4eb08c15a44293c1c7e9f73fd73c12cd16e1b5ad
parent68af357688c9e3fd3c6541ddc08a6366c2eb3042 (diff)
set min STOP state duration to 1s
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 47cb35d..6f73475 100644
--- a/main.c
+++ b/main.c
@@ -389,7 +389,7 @@ int main(void)
case STOP:
InitPorts();
- Timer1 = 500; // Disable any other Power up for 0.5 s.
+ Timer1 = 1000; // Disable any other Power up for 1 s.
ClrBit(P2OUT, RED_LED_N); // To show no restart is possible for now
change_state(STOP + 1);
break;