跳至内容
用户工具
站点工具
搜索
工具
显示页面
修订记录
反向链接
最近更改
媒体管理器
网站地图
登录
>
m:ws:ws4:slave
本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。
SPI Arduino端口模拟 从机程序 <code C++> //Slave End #define DI 11 #define CS 10 void setup() { attachInterrupt(digitalPinToInterrupt(2), get_sck, RISING); //SCK // put your setup code here, to run once: pinMode(CS, 0); pinMode(DI, 0); Serial.begin(9600); } void get_sck() { static char buf = 0, buf_num = 0, is_cs = 0; if (digitalRead(CS) == 0 && is_cs == 0){ is_cs = 1; buf_num = 0; buf = 0; Serial.println(' '); } else if(is_cs == 1) { buf <<= 1; buf |= digitalRead(DI)&0x01; Serial.print(digitalRead(DI)); buf_num++; if (buf_num >= 8) { Serial.print(buf); is_cs = 0; } } } void loop() { // put your main code here, to run repeatedly: } </code>
· 最后更改: 2015/11/28 11:25
页面工具
显示页面
修订记录
反向链接
回到顶部