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.
BBSerial.h
00001 #pragma once 00002 00003 #include <mbed.h> 00004 00005 // Handle an error-correction connection between two boards 00006 // Board to Board serial 00007 // using UART3 00008 class BBSerial { 00009 00010 00011 public: 00012 00013 BBSerial(); 00014 void printf(const char* format, ...); 00015 int scanf(const char* format, ...); 00016 00017 private: 00018 00019 00020 Serial uart; 00021 };
Generated on Sat Jul 16 2022 02:23:26 by
1.7.2