mirror of
https://github.com/esphome/esphome.git
synced 2026-09-24 05:24:14 +00:00
Co-authored-by: Jonathan Swoboda <154711427+swoboda1337@users.noreply.github.com>
44 lines
1000 B
C++
44 lines
1000 B
C++
#pragma once
|
|
|
|
#ifdef USE_RP2
|
|
|
|
#include <SerialPIO.h>
|
|
#include <SerialUART.h>
|
|
|
|
#include <vector>
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/hal.h"
|
|
#include "esphome/core/log.h"
|
|
#include "uart_component.h"
|
|
|
|
namespace esphome::uart {
|
|
|
|
class RP2UartComponent final : public UARTComponent, public Component {
|
|
public:
|
|
void setup() override;
|
|
void dump_config() override;
|
|
float get_setup_priority() const override { return setup_priority::BUS; }
|
|
|
|
void write_array(const uint8_t *data, size_t len) override;
|
|
|
|
bool peek_byte(uint8_t *data) override;
|
|
bool read_array(uint8_t *data, size_t len) override;
|
|
|
|
size_t available() override;
|
|
UARTFlushResult flush() override;
|
|
|
|
uint16_t get_config();
|
|
|
|
bool is_hw_serial() { return this->hw_serial_; }
|
|
HardwareSerial *get_hw_serial() { return this->serial_; }
|
|
|
|
protected:
|
|
void check_logger_conflict() override {}
|
|
bool hw_serial_{false};
|
|
|
|
HardwareSerial *serial_{nullptr};
|
|
};
|
|
|
|
} // namespace esphome::uart
|
|
#endif // USE_RP2
|