初中生
最后登录1970-1-1
在线时间 小时
注册时间2019-2-14
|
本帖最后由 温柔的風 于 2020-3-12 16:55 编辑
先抱歉一下, 我不知道有没有发错版 。
初次使用对其 (周期读取, 单次获取) 指令的用法感疑惑。
若果下列情况,那项是用法正确的?
情況1:
[mw_shl_code=c,true]main(){
软复位;
单次获取数据指令; //0x2400
while(1){
i2c_rx_read(); //获取数据
}
}[/mw_shl_code]
情況2:
[mw_shl_code=c,true]main(){
软复位;
while(1){
单次获取数据指令; //0x2400
i2c_rx_read(); //获取数据
}
}[/mw_shl_code]
情況3:
[mw_shl_code=c,true]main(){
软复位;
周期测量数据指令; //0x2737
while(1){
i2c_rx_read(); //获取数据
}
}[/mw_shl_code]
情況4:
[mw_shl_code=c,true]main(){
软复位;
周期测量数据指令; //0x2737
while(1){
周期获取数据指令; //0xE000
i2c_rx_read(); //获取数据
}
}[/mw_shl_code]
情況5:
[mw_shl_code=c,true]main(){
软复位;
while(1){
周期测量数据指令; //0x2737
周期获取数据指令; //0xE000
i2c_rx_read(); //获取数据
}
}[/mw_shl_code]
先行感谢各位指点!
|
|