嵌入式学习

作业

        TCP机械臂测试。

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <semaphore.h>
#include <wait.h>
#include <signal.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <semaphore.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/un.h>

#define SER_PORT 8888
#define SER_IP "192.168.125.172"
#define CLI_PORT 6666
#define CLI_IP "192.168.125.176"

int main(int argc, const char *argv[])
{
	//创建套接字标识符
	int cfd=socket(AF_INET,SOCK_STREAM,0);
	if(-1 == cfd)
	{
		perror("socket error");
		return -1;
	}
	printf("socket success\n");
	printf("cfd=%d\n",cfd);

	//连接服务器
	//准备对端结构体信息
	struct sockaddr_in sin;
	sin.sin_family=AF_INET;
	sin.sin_port=htons(SER_PORT);
	sin.sin_addr.s_addr=inet_addr(SER_IP);
	//连接服务器
	if(connect(cfd,(struct sockaddr*)&sin,sizeof(sin)) == -1)
	{
		perror("connect error");
		return -1;
	}
	printf("connect success\n");

	//数据收发
	char rbuf[5]={0xff,0x02,0x00,0x00,0xff};
	char bbuf[5]={0xff,0x02,0x01,0x00,0xff};
	send(cfd,rbuf,sizeof(rbuf),0);
	send(cfd,bbuf,sizeof(bbuf),0);

	while(1)
	{
		char c=0;
		int num=0;
		scanf(" %c %d",&c,&num);
		switch(c)
		{
			case 'w':
			case 'W':
				rbuf[3]+=num;
				send(cfd,rbuf,sizeof(rbuf),0);
				break;
			case 's':
			case 'S':
				rbuf[3]-=num;
				send(cfd,rbuf,sizeof(rbuf),0);
				break;
			case 'd':
			case 'D':
				bbuf[3]+=num;
				send(cfd,bbuf,sizeof(bbuf),0);
				break;
			case 'a':
			case 'A':
				bbuf[3]-=num;
				send(cfd,bbuf,sizeof(bbuf),0);
				break;
			default:
				printf("错误操作\n");
				break;
		}

	}
	
	close(cfd);

	return 0;
}

  • 3
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值