25 lines
309 B
Plaintext
25 lines
309 B
Plaintext
/*
|
|
* testTask.h
|
|
*
|
|
* Created on: 29.08.2016
|
|
* Author: wn
|
|
*/
|
|
|
|
#ifndef TESTTASK_H_
|
|
#define TESTTASK_H_
|
|
|
|
|
|
#include "gpio.h"
|
|
|
|
|
|
typedef struct {
|
|
tPin pin;
|
|
uint8_t toggle;
|
|
} tTestTaskHandle;
|
|
|
|
void testTaskInit(void *handleArg, tPin pin);
|
|
void testTaskExec(void *handleArg);
|
|
|
|
|
|
#endif /* TESTTASK_H_ */
|