Currently --long is a nop; it sets pulse_ms to is original value. Fix this.
Signed-off-by: Daniel Thompson daniel.thompson@linaro.org --- 96boardsctl/96boardsctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/96boardsctl/96boardsctl.c b/96boardsctl/96boardsctl.c index a2bead791a37..4f50e95bfd3e 100644 --- a/96boardsctl/96boardsctl.c +++ b/96boardsctl/96boardsctl.c @@ -119,7 +119,7 @@ int main(int argc, char *argv[]) list_devices(); break; case 'L': - pulse_ms = 1000; + pulse_ms = 5000; break; case 'o': power_pin = 1;