Contiki 3.x
shell-blink.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008, Swedish Institute of Computer Science.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the Institute nor the names of its contributors
14  * may be used to endorse or promote products derived from this software
15  * without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * This file is part of the Contiki operating system.
30  *
31  */
32 
33 /**
34  * \file
35  * A brief description of what this file is.
36  * \author
37  * Adam Dunkels <adam@sics.se>
38  */
39 
40 #include "contiki.h"
41 #include "shell.h"
42 
43 #include "dev/leds.h"
44 
45 #include <stdio.h>
46 
47 /*---------------------------------------------------------------------------*/
48 PROCESS(shell_blink_process, "blink");
49 SHELL_COMMAND(blink_command,
50  "blink",
51  "blink [num]: blink LEDs ([num] times)",
52  &shell_blink_process);
53 /*---------------------------------------------------------------------------*/
54 PROCESS_THREAD(shell_blink_process, ev, data)
55 {
56  static struct etimer etimer;
57  static int i, num, on = 0;
58  const char *nextptr;
59 
60  PROCESS_EXITHANDLER(if(on) { leds_toggle(LEDS_ALL); } );
61 
62  PROCESS_BEGIN();
63 
64  if(data != NULL) {
65  num = shell_strtolong(data, &nextptr);
66  if(nextptr != data) {
68  for(i = 0; i < num; ++i) {
69  leds_toggle(LEDS_ALL);
70  on = 1;
73 
74  leds_toggle(LEDS_ALL);
75  on = 0;
78  }
79  PROCESS_EXIT();
80  }
81  }
82 
83  while(1) {
84  struct shell_input *input;
86  if(ev == PROCESS_EVENT_TIMER && data == &etimer) {
87  if(on) {
88  leds_toggle(LEDS_ALL);
89  on = 0;
90  }
91  } else if(ev == shell_event_input) {
92  input = data;
93  if(input->len1 + input->len2 == 0) {
94  if(on) {
95  leds_toggle(LEDS_ALL);
96  on = 0;
97  }
98  PROCESS_EXIT();
99  }
100  shell_output(&blink_command,
101  input->data1, input->len1,
102  input->data2, input->len2);
103 
104  if(on == 0) {
105  leds_toggle(LEDS_ALL);
106  on = 1;
107  }
109  }
110  }
111 
112 
113  PROCESS_END();
114 }
115 /*---------------------------------------------------------------------------*/
116 void
117 shell_blink_init(void)
118 {
119  shell_register_command(&blink_command);
120 }
121 /*---------------------------------------------------------------------------*/
int etimer_expired(struct etimer *et)
Check if an event timer has expired.
Definition: etimer.c:205
#define PROCESS_WAIT_UNTIL(c)
Wait for a condition to occur.
Definition: process.h:192
#define PROCESS_EXIT()
Exit the currently running process.
Definition: process.h:200
#define PROCESS_BEGIN()
Define the beginning of a process.
Definition: process.h:120
Main header file for the Contiki shell
#define NULL
The null pointer.
void shell_output(struct shell_command *c, void *data1, int len1, const void *data2, int len2)
Output data from a shell command.
Definition: shell.c:395
#define PROCESS_THREAD(name, ev, data)
Define the body of a process.
Definition: process.h:273
#define PROCESS_END()
Define the end of a process.
Definition: process.h:131
unsigned long shell_strtolong(const char *str, const char **retstr)
Convert a string to a number.
Definition: shell.c:521
#define PROCESS_EXITHANDLER(handler)
Specify an action when a process exits.
Definition: process.h:254
Structure for shell input data.
Definition: shell.h:365
void shell_register_command(struct shell_command *c)
Register a command with the shell.
Definition: shell.c:413
#define PROCESS_WAIT_EVENT()
Wait for an event to be posted to the process.
Definition: process.h:141
#define PROCESS(name, strname)
Declare a process.
Definition: process.h:307
void etimer_reset(struct etimer *et)
Reset an event timer with the same interval as was previously set.
Definition: etimer.c:184
int shell_event_input
The event number for shell input data.
Definition: shell.c:70
void etimer_set(struct etimer *et, clock_time_t interval)
Set an event timer.
Definition: etimer.c:177
A timer.
Definition: etimer.h:76
#define SHELL_COMMAND(name, command, description, process)
Define a shell command.
Definition: shell.h:219
#define CLOCK_SECOND
A second, measured in system clock time.
Definition: clock.h:82