研究生
最后登录1970-1-1
在线时间 小时
注册时间2018-7-14
|
dear fire:
在读SD卡章节,获取SCR卡寄存器内容的Findscr函数最后结果:
*(pscr + 1) = ((tempscr[0] & SD_0TO7BITS) << 24) | ((tempscr[0] & SD_8TO15BITS) << 8) | ((tempscr[0] & SD_16TO23BITS) >> 8) | ((tempscr[0] & SD_24TO31BITS) >> 24);
*(pscr) = ((tempscr[1] & SD_0TO7BITS) << 24) | ((tempscr[1] & SD_8TO15BITS) << 8) | ((tempscr[1] & SD_16TO23BITS) >> 8) | ((tempscr[1] & SD_24TO31BITS) >> 24);
为什么字节序要颠倒,字顺序也颠倒?
手册查不到,网上也查不到,也有网友在问,没有人回答.冀答疑.
thank you!
|
|