필자는 아두이노 코드 중 Serial 관련 코드가 궁굼하여 해당 코드가 Class로 구성 되어 있지 않을까 판단하여 구글링을 해보았으며 살짝 다른 내용을 확인 하게 되었다
Serial.begin(115200); while (!Serial); // wait for Leonardo enumeration, others continue immediately |
구글링 결과 if(Serial)라는 Function으로 아두이노 별도 구현 되어 있으며 기능은 해당 Port Open여부를 알려주는 기능을 하고 있다.
if(Serial)DescriptionIndicates if the specified Serial port is ready. On the boards with native USB, if (Serial) (or if(SerialUSB) on the Due) indicates whether or not the USB CDC serial connection is open. For all other boards, and the non-USB CDC ports, this will always return true. This was introduced in Arduino IDE 1.0.1. |
살짝 영어가 부족하여 USB장착 된 보드이면 USB연결 시점에 인식하고, 그렇치 않은 경우 Port의 Open 유무 반환하는 것으로 이해된다.