初级会员
- 积分
- 63
- 金钱
- 63
- 注册时间
- 2015-6-30
- 在线时间
- 11 小时
|
10金钱
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP ; //íÆíìêä3ö
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_SetBits(GPIOA,GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4); //PA2,3,4Öøß
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4; //PC4 íÆíì
GPIO_Init(GPIOC, &GPIO_InitStructure);
GPIO_SetBits(GPIOC,GPIO_Pin_4); //PC4éÏà-
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1; //ÖD¶Ïòy½ÅA1éÏà-êäèë
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_Init(GPIOA, &GPIO_InitStructure);
这是ENC28J60的硬件引脚问题,除了SPI的通信引脚,有人可以解释一下上面定义的几个引脚的作用么?
|
|