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.
25 lines
630 B
25 lines
630 B
|
|
#ifndef __AP_HAL_FLYMAPLE_CONSOLE_H__ |
|
#define __AP_HAL_FLYMAPLE_CONSOLE_H__ |
|
|
|
#include <AP_HAL_FLYMAPLE.h> |
|
|
|
class AP_HAL_FLYMAPLE_NS::FLYMAPLEConsoleDriver : public AP_HAL::ConsoleDriver { |
|
public: |
|
FLYMAPLEConsoleDriver(void* baseuartdriver); |
|
void init(void* machtnichts); |
|
void backend_open(); |
|
void backend_close(); |
|
size_t backend_read(uint8_t *data, size_t len); |
|
size_t backend_write(const uint8_t *data, size_t len); |
|
|
|
int16_t available(); |
|
int16_t txspace(); |
|
int16_t read(); |
|
|
|
size_t write(uint8_t c); |
|
private: |
|
AP_HAL::UARTDriver* _base_uart; |
|
}; |
|
|
|
#endif // __AP_HAL_FLYMAPLE_CONSOLE_H__
|
|
|