aaaaaaaaa

Dependencies:   QEI mbed

Fork of MainBoard2018_Auto_Master_A_new by Akihiro Nakabayashi

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Mu.h Source File

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 PC_6
00009     #define MU_RX PC_7
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