Allow to optionally (triggered with SELFSTART_PROCESS) self start the application.

This commit is contained in:
oliverschmidt 2008-02-07 16:28:11 +00:00
parent 155a27ff59
commit 0a8f384a40
13 changed files with 64 additions and 12 deletions

View file

@ -43,7 +43,7 @@
*
* This file is part of the Contiki desktop OS
*
* $Id: program-handler.c,v 1.7 2007/12/15 13:03:17 oliverschmidt Exp $
* $Id: program-handler.c,v 1.8 2008/02/07 16:31:14 oliverschmidt Exp $
*
*/
@ -124,6 +124,10 @@ static struct ctk_button errorokbutton =
PROCESS(program_handler_process, "Program handler");
#if SELFSTART_PROCESS
AUTOSTART_PROCESSES(&program_handler_process);
#endif /* SELFSTART_PROCESS */
static const char * const errormsgs[] = {
"Ok",
"Read error",