Subversion Repositories shark

Compare Revisions

Regard whitespace Rev 1550 → Rev 1549

/demos/trunk/pci6025e/test_dac.c
110,7 → 110,7
pid_m = task_create("Voltage", Voltage_body, &m, NULL);
if(pid_m == NIL){
sys = 30;
exit(1);
sys_end();
}
 
hard_task_default_model(d);
120,13 → 120,13
pid_d = task_create("DAC Check", DAC_Check_body, &d, NULL);
if(pid_d == NIL){
sys = 31;
exit(1);
sys_end();
}
 
//Check if a NI board is on PCI bus
if(!reMap()){
sys = 11;
exit(1);
sys_end();
}
 
drawInterface();
302,7 → 302,7
close_event(NULL);
 
exit(1);
sys_end();
}
 
/*