[configuration의 이해] port를 open한 후 설정하는 방법은 두 가지가 있다. 1. 모든 세팅을 한 번에 read/write 하는 방법. 2. 각각 세팅을 port에 직접 하는 방법. 1번의 경우, config를 거쳐서 한다고 생각하면 쉽고, 2번은 임시 config에 세팅한 후 free되는 방식이다. /* Create a different configuration to have ready for use. */ printf("Creating new config for 9600 7E2, XON/XOFF flow control.\n"); struct sp_port_config *other_config; check(sp_new_config(&other_config)); check(sp_set_..