ISInit() function

Discussion to talk about software related topics only.
Post Reply
navydev
Posts: 7
Joined: Thu Dec 04, 2008 6:13 am

ISInit() function

Post by navydev »

I am trying to setup multitasking in my app.
One of the instructions to set this up was to use
OSInit(); and OSStart(); When I tried to compile with this I encountered an
error telling me that the the parameter list was incomplete, that
it should be OSInit( void *idle_task_stk_top, void *idle_task_stk_bot, BYTE maxtasks );
Does anyone know why there is discrepancy and if they know how to
create more than one task beside a UserMain and one other separate task?
User avatar
yevgenit
Posts: 84
Joined: Fri Apr 25, 2008 12:47 am
Contact:

Re: ISInit() function

Post by yevgenit »

Use the following declarations from file ucos.h:

#define OSSimpleTaskCreate(x,p) { static DWORD func_##x_Stk[USER_TASK_STK_SIZE] __attribute__( ( aligned( 4 ) ) ); OSTaskCreate(x,NULL,(void *)&func_##x_Stk[USER_TASK_STK_SIZE],(void*)func_##x_Stk,p); }
#define OSSimpleTaskCreatewName(x,p,n) { static DWORD func_##x_Stk[USER_TASK_STK_SIZE] __attribute__( ( aligned( 4 ) ) ); OSTaskCreatewName(x,NULL,(void *)&func_##x_Stk[USER_TASK_STK_SIZE],(void*)func_##x_Stk,p,n); }
Yevgeni Tunik
Embedded/RealTime software engineer
https://www.linkedin.com/in/yevgenitunik/
________________________
navydev
Posts: 7
Joined: Thu Dec 04, 2008 6:13 am

Re: ISInit() function

Post by navydev »

Thank you! I actually figured out what my real problem was.
I wasn't using a separate stack for the second task I was creating,
I was using the same stack for both tasks. But thank you for that
speedy and no doubt useful response.
rnixon
Posts: 833
Joined: Thu Apr 24, 2008 3:59 pm

Re: ISInit() function

Post by rnixon »

navydev,

I don't think you are supposed to be calling those functions directly. Rather, you should be using the wrapper functions like in the previous post. Otherwise I think you are going to miss something and possibly get erratic behavior at some point in the future. Just my opinion.
Post Reply