program for receiving 2021NHK B_team controller

Dependencies:   2021Bcon

Committer:
piroro4560
Date:
Sat Oct 16 13:42:48 2021 +0000
Revision:
1:0cc19b454fc6
Parent:
0:157b6d43eb95

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
piroro4560 0:157b6d43eb95 1 #ifndef PIN_CONFIG_H
piroro4560 0:157b6d43eb95 2 #define PIN_CONFIG_H
piroro4560 0:157b6d43eb95 3
piroro4560 0:157b6d43eb95 4 #include "mbed.h"
piroro4560 0:157b6d43eb95 5
piroro4560 0:157b6d43eb95 6 /*FEP*/
piroro4560 0:157b6d43eb95 7 static PinName const fepTX = PC_10;
piroro4560 0:157b6d43eb95 8 static PinName const fepRX = PC_11;
piroro4560 0:157b6d43eb95 9 static uint8_t const fepad = 005; // 通信相手のアドレス
piroro4560 0:157b6d43eb95 10
piroro4560 0:157b6d43eb95 11 /*PC*/
piroro4560 0:157b6d43eb95 12 static PinName const pcTX = USBTX;
piroro4560 0:157b6d43eb95 13 static PinName const pcRX = USBRX;
piroro4560 0:157b6d43eb95 14
piroro4560 0:157b6d43eb95 15 #endif