Page 242 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 242

/**
               *  @}

               */


            /**
               *  @}

            */


            /************************  (C)  COPYRIGHT  STMicroelectronics  *****END  OF
            FILE****/



            나.  라즈베리파이  관련  소스

            *  파이썬

            #include  <stdio.h>
            #include  <string.h>
            #include  <errno.h>

            #include  <wiringPi.h>
            #include  <wiringSerial.h>
            #include  <stdlib.h>
            #include  <time.h>
            #include  <sys/types.h>
            #include  <sys/socket.h>

            #include  <netinet/in.h>

            #define  BUF_LEN  128


            int  main(int  argc,  char  *argv[])
            {
               char buffer[BUF_LEN];
                struct  sockaddr_in  server_addr,  client_addr;
               char temp[20];
                int  server_fd,  client_fd;

                int  len,  msg_size;
               int fd  ;






                                                         -  235  -
   237   238   239   240   241   242   243   244   245   246   247