blob: 0f910f971f9fc24225180969a1a97e69ecf97e79 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Dortmund University of Applied Sciences and Arts and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Dortmund University of Applied Sciences and Arts - initial API and implementation
*******************************************************************************/
#ifndef SRC_PARALLELLA_LABEL_MAN_CORE0_H_
#define SRC_PARALLELLA_LABEL_MAN_CORE0_H_
/**
* @file label_man_core0.h
* @author Mahmoud Bazzal, Anand Prakash
* @date 24 May 2020
* @brief This file is used to define the functions for implementing the cIn and cOut handler and
* reading and writing of shared and distributed labels and signals.
*
*/
#define num_unique_sections 1
void init_mem_sections(void);
void init_DSHM_sections(void);
//declare cIn/Out operations
//to be set up from the amalthea model during
//code generation
void cIn5ms();
void cIn10ms();
void cIn20ms();
void cIn10msCore2();
void cIn20msCore2();
//-------
void cOut5ms();
void cOut10ms();
void cOut20ms();
void cOut10msCore2();
void cOut20msCore2();
#endif /* SRC_PARALLELLA_LABEL_MAN_CORE0_H_ */