blob: 588ef798de6f5e61583c6a61cc56677ace630fdd [file] [log] [blame]
/*
* Copyright (c) 2017 Eclipse Foundation, FH Dortmund and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Description:
* Motor driving Task with wiringPi and pThreads
*
* Authors:
* M. Ozcelikors, R.Hottger
* <mozcelikors@gmail.com> <robert.hoettger@fh-dortmund.de>
*
* Contributors:
* Gael Blondelle - API functions
*
* Update History:
* 02.02.2017 - first compilation
* 15.03.2017 - updated tasks for web-based driving
*
*/
#ifndef MOTORDRIVER_TASK_H_
#define MOTORDRIVER_TASK_H_
#include <stdio.h>
#include <stdlib.h>
void *MotorDriver_Task(void * arg);
void ExitAutomaticModes(void);
#endif /* MOTORDRIVER_TASK_H_ */