mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
14 lines
203 B
C++
14 lines
203 B
C++
|
|
#ifndef __AP_HAL_GPIO_H__
|
|
#define __AP_HAL_GPIO_H__
|
|
|
|
#include "AP_HAL_Namespace.h"
|
|
|
|
class AP_HAL::GPIO {
|
|
public:
|
|
GPIO() {}
|
|
virtual void init(int machtnicht) = 0;
|
|
};
|
|
|
|
#endif // __AP_HAL_GPIO_H__
|