Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
SWDSerial.h
00001 #pragma once 00002 #include "Stream.h" 00003 00004 namespace mbed { 00005 00006 class SWDSerial : public Stream { 00007 public: 00008 void baud(int baudrate){} 00009 enum Parity { 00010 None = 0, 00011 }; 00012 void format(int bits=8, Parity parity=SWDSerial::None, int stop_bits=1){} 00013 int readable(); 00014 int writeable(); 00015 protected: 00016 virtual int _getc(); 00017 virtual int _putc(int c); 00018 }; 00019 00020 } // namespace mbed
Generated on Wed Aug 3 2022 03:14:00 by
 1.7.2
 1.7.2