Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

µC/DNS use the following structure to configure his task. 

Code Block
languagecpp
titleListing - µC/DNSc task Configuration Structure
typedef  struct  DNSc_cfg_task {
    CPU_INT32U   Prio;                                          /* Task priority.                                       */
    CPU_INT32U   StkSizeBytes;                                  /* Size of the stack.                                   */
    void        *StkPtr;                                        /* Pointer to base of the stack.                        */
} DNSc_CFG_TASK;


µC/DNSc stack has one internal task that need needs to be configured. The task has its own DNSc_CFG_TASK object defining the task priority, the task's stack size and the pointer to start of task stack.

...

  • Network TX De-allocation task (highest priority)
  • Network application tasks, such as DNSc instance.
  • Network timer task
  • Network RX task (lowest  priority)

See Network Tasks Configuration for further information.

Task Stack Size

...