Open FFBoard
Open source force feedback firmware
ExtiHandler.h
Go to the documentation of this file.
1/*
2 * ExtiHandler.h
3 *
4 * Created on: Feb 14, 2020
5 * Author: Yannick
6 */
7
8#ifndef EXTIHANDLER_H_
9#define EXTIHANDLER_H_
10#include "cppmain.h"
11
13public:
14 static std::vector<ExtiHandler*> extiHandlers;
15
17 virtual ~ExtiHandler();
18 virtual void exti(uint16_t GPIO_Pin);
19};
20
21#endif /* EXTIHANDLER_H_ */
virtual ~ExtiHandler()
Definition: ExtiHandler.cpp:18
static std::vector< ExtiHandler * > extiHandlers
Definition: ExtiHandler.h:14
virtual void exti(uint16_t GPIO_Pin)
Definition: ExtiHandler.cpp:22