Important update: Arm Announces End of Life Timeline for Mbed. This site will be archived in July 2026. Read the full announcement.
How to kill Serial Port
printf等のシリアルポートへの出力を殺す方法。 なんとなくやったらできただけなので副作用とかについては不明。 とりあえずこんな感じ。
#include "mbed.h" Serial pc(USBTX, USBRX); int main() { pc.baud(9600); printf("出力したい文字列\r\n"); pc.baud(0); printf("出力したくない文字列\r\n"); pc.baud(9600); printf("出力したい文字列\r\n"); }