Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在查看一些节奏测试程序,想知道下面公式中的 # 是什么意思:它是计算帧数据中的总 1 位,谢谢!感谢您的时间!
total_one_bit = 0 for bit_index = 0 to 15 do total_one_bit = total_one_bit + ((frame>>word(bit_index))&2#1) endfor