The program architecture of the sub-computer with the UCOS System in ARM7

Source: Internet
Author: User

Int main (void)

{

Enable the watchdog;

Disable all interruptions;

Osinit (); // operating system initialization

Ostaskcreate (task_start, 0, task_stack_point, start_task_prio); // start the task_start task for initialization.

Osstart (); // enable the UCOS operating system.

}

Void task_start (void * parg)

{

Initilization (); // initialize required parameter configuration and other information

Ostaskcreate (task1, 0, task1_stack_point, task1_prio); // create Task 1

Ostaskcreate (task2, 0, task2_stack_point, task2_prio); // create Task 2

Ostaskcreate (task3, 0, task3_stack_point, task3_prio); // create Task 3

Ostaskdel (OS _prio_self/* 0xff */); // Delete the current program

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.