You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- |
|
|
|
#ifndef __AP_HAL_PX4_GPIO_H__ |
|
#define __AP_HAL_PX4_GPIO_H__ |
|
|
|
#include <AP_HAL_PX4.h> |
|
|
|
#define PX4_GPIO_PIEZO_PIN 110 |
|
#define PX4_GPIO_EXT_RELAY_PIN 111 |
|
|
|
class PX4::PX4GPIO : public AP_HAL::GPIO { |
|
public: |
|
PX4GPIO(); |
|
void init(); |
|
void pinMode(uint8_t pin, uint8_t output); |
|
int8_t analogPinToDigitalPin(uint8_t pin); |
|
uint8_t read(uint8_t pin); |
|
void write(uint8_t pin, uint8_t value); |
|
|
|
/* Alternative interface: */ |
|
AP_HAL::DigitalSource* channel(uint16_t n); |
|
|
|
/* Interrupt interface: */ |
|
bool attach_interrupt(uint8_t interrupt_num, AP_HAL::Proc p, uint8_t mode); |
|
|
|
private: |
|
int _led_fd; |
|
int _tone_alarm_fd; |
|
int _gpio_fd; |
|
}; |
|
|
|
class PX4::PX4DigitalSource : public AP_HAL::DigitalSource { |
|
public: |
|
PX4DigitalSource(uint8_t v); |
|
void mode(uint8_t output); |
|
uint8_t read(); |
|
void write(uint8_t value); |
|
private: |
|
uint8_t _v; |
|
}; |
|
|
|
#endif // __AP_HAL_EMPTY_GPIO_H__
|
|
|