Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1550 → Rev 1549

/demos/trunk/pci6025e/test_bms.c
100,7 → 100,7
 
if(!reMap()){
sys = 11;
exit(1);
sys_end();
}
 
soft_task_default_model(show_val_mod);
112,7 → 112,7
if( (show_val_pid = task_create("Show task", show_val_body, &show_val_mod, NULL))
== NIL ){
sys = 20;
exit(1);
sys_end();
}
 
hard_task_default_model(gate_action_model);
121,7 → 121,7
if( (gate_action_pid = task_create("Gate Action", gate_action_body, &gate_action_model, NULL))
== NIL ){
sys = 22;
exit(1);
sys_end();
}
 
drawInterface();
155,7 → 155,7
{
closeEvent(NULL);
 
exit(1);
sys_end();
}
 
void showEvent(KEY_EVT *k)