Skip to content
Snippets Groups Projects
temperatureRegulation.c 765 B
Newer Older
/*
 * temperatureRegulation.c
 *
 *  Created on: Apr 16, 2023
 *      Author: Flax
 *
 *      Prefix : REG
 */

// ==============
// Local includes
// ==============

// ===============
// Local constants
// ===============

// ==========================
// Local functions prototypes
// ==========================
static void RegGetInputs (void);
static void RegUpdate (void);
static void RegSetOutputs (void);

// ===========================
// Local functions definitions
// ===========================

// ============================
// Shared functions definitions
// ============================

void REGInit (void)
{

}

void REGStart (void)
{

}

void REGStop (void)
{

}

void REGCyclicTask (void)
{

}