/************************************************************************** * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file TaskPriority.h * * @date 19-Sep-2019 * @author S. Nash * * @brief Priority task header file. * **************************************************************************/ #ifndef __TASK_PRIORITY_H__ #define __TASK_PRIORITY_H__ #include "DGCommon.h" // public definitions #define TASK_PRIORITY_INTERVAL (10) // in ms // public function prototypes void taskPriority( void ); #endif