Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
8 years, 10 months ago. This question has been closed. Reason: Off Topic
FRDM-K64FのDigitalOut(D8)
DigitalOut(D8)が出力されません。 手元のデバイス故障なのか、、、 なにか情報ありませんか? よろしくお願いします。
#include "mbed.h" DigitalOut gpo0(D7, 0); DigitalOut gpo1(D8, 0); int main() { while (true) { gpo0.write(1); gpo1.write(1); wait_ms(100); gpo0.write(0); gpo1.write(0); wait_ms(100); } }