This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

BIOS 区别

Other Parts Discussed in Thread: SYSBIOS

请问 DSPBiOS与SYSBIOS主要区别是什么?

如果平台是28035 应该选取哪个?

谢谢!

 

  • SYSBIOS是DSPBIOS的升级版本,可以图形化配置,建议使用SYSBIOS。

  • 有没有28035+bios的例程.

    Bios自带的例程,烧录后不运行. 看了下main, 没看到初始化代码.

    Int main() {    

    Task_Params taskParams;           

      /* Create a Semaphore object to be use as a resource lock */     sem = Semaphore_create(1, NULL, NULL);

     /* Create two tasks that share a resource*/    

    Task_Params_init(&taskParams);     taskParams.priority = 1;     tsk1 = Task_create (task1, &taskParams, NULL);        

    Task_Params_init(&taskParams);     taskParams.priority = 2;     tsk2 = Task_create (task2, &taskParams, NULL);   

    BIOS_start();    /* does not return */    

    return(0); }