blob: 6ad5e23bd86be6398eae1d69be30bbad4bc61b21 [file] [log] [blame]
/*
* Copyright (c) 2017 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:
* Parking task - Header file
*
* Authors:
* M. Ozcelikors, R.Hottger
* <mozcelikors@gmail.com> <robert.hoettger@fh-dortmund.de>
* Update History:
* 06.06.2017 - added initial task
*
*/
#ifndef TASKS_PARKING_TASK_H_
#define TASKS_PARKING_TASK_H_
#include <stdio.h>
#include <stdlib.h>
#include <wiringPi.h>
#include <ctime>
#include <unistd.h>
#include "../timing/timing.h"
#include "../api/basic_psys_rover.h"
#include "../interfaces.h"
#include <pthread.h>
#include "../RaspberryTest.h"
#include <softPwm.h>
#include "../pthread_monitoring/collect_thread_name.h"
#include "../tasks/motordriver_task.h"
void *Parking_Task(void * arg);
#endif /* TASKS_PARKING_TASK_H_ */