* add Serial.dtr() and Serial.rts() methods * added documentation for Serial.dtr() and Serial.rts()
65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
/*
|
|
Serial-over-USB for the Raspberry Pi Pico RP2040
|
|
|
|
Copyright (c) 2021 Earle F. Philhower, III <earlephilhower@yahoo.com>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include "api/HardwareSerial.h"
|
|
#include <stdarg.h>
|
|
|
|
class SerialUSB : public HardwareSerial {
|
|
public:
|
|
SerialUSB() { }
|
|
void begin(unsigned long baud = 115200) override;
|
|
void begin(unsigned long baud, uint16_t config) override {
|
|
(void) config;
|
|
begin(baud);
|
|
};
|
|
void end() override;
|
|
|
|
virtual int peek() override;
|
|
virtual int read() override;
|
|
virtual int available() override;
|
|
virtual int availableForWrite() override;
|
|
virtual void flush() override;
|
|
virtual size_t write(uint8_t c) override;
|
|
virtual size_t write(const uint8_t *p, size_t len) override;
|
|
using Print::write;
|
|
operator bool() override;
|
|
bool dtr();
|
|
bool rts();
|
|
|
|
void ignoreFlowControl(bool ignore = true);
|
|
|
|
// ESP8266 compat
|
|
void setDebugOutput(bool unused) {
|
|
(void) unused;
|
|
}
|
|
|
|
private:
|
|
bool _running = false;
|
|
bool _ignoreFlowControl = false;
|
|
};
|
|
|
|
extern SerialUSB Serial;
|
|
|
|
namespace arduino {
|
|
extern void serialEventRun(void) __attribute__((weak));
|
|
};
|