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.
Mu.h
00001 #ifndef MU_H_ 00002 #define MU_H_ 00003 00004 #include <stdint.h> 00005 #include "mbed.h" 00006 00007 namespace MU { 00008 #define MU_TX PA_0 00009 #define MU_RX PA_1 00010 00011 class Mu { 00012 public: 00013 static void Initialize(uint8_t select); 00014 static void SendCommand(char *command, char *data, uint8_t dataLength); 00015 }; 00016 00017 extern Serial MuUart; 00018 } 00019 00020 #endif
Generated on Tue Jul 12 2022 18:09:59 by
