A simple RTOS for microcontrollers based upon concepts of FreeRTOS

This file is part of SimpleRTOS2

by Isaac Marino Bavaresco

This is file "SimpleRTOS\Priorities.c"

/*============================================================================*/
#include "Portable.h"
/*============================================================================*/
#define MAX_PRIORITIES  (3)
/*============================================================================*/

const unsigned int  MaxPriorities   = MAX_PRIORITIES;

/*============================================================================*/
/*
Points to the head of the running tasks contexts list. This list is organized
as a double-linked circular list.
*/

context_t           *ReadyTasks[MAX_PRIORITIES];

/*============================================================================*/