mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 23:18:28 -04:00
17 lines
288 B
C++
17 lines
288 B
C++
|
|
#ifndef __AP_HAL_AVR_GPIO_H__
|
|
#define __AP_HAL_AVR_GPIO_H__
|
|
|
|
#include <AP_HAL.h>
|
|
|
|
class AP_HAL::ArduinoGPIO : public AP_HAL::GPIO {
|
|
public:
|
|
ArduinoGPIO() : _init(0) {}
|
|
void init(int machtnicht) { _init = machtnicht; }
|
|
private:
|
|
int _init;
|
|
};
|
|
|
|
#endif // __AP_HAL_AVR_GPIO_H__
|
|
|