readme
来自「无线通信的主要编程软件,是无线通信工作人员的必备工具,关天相关教程我会在后续传上」· 代码 · 共 24 行
TXT
24 行
The basic underlying abstraction for this message-format layer is theelement, which is defined by its type, bit offset and bit length.Possible types are unsigned integer, signed integer, float, doubleand long (the last 3 are actually identical, and always 32 bits long).Due to Java restrictions, 64-bit unsigned integer types do not workproperly (but avr-gcc doesn't support integers greater than 32 bitsanyway...).Fields represent one (simple fields) or more (array fields) elements.A field has a name, and:for simple fields: an element specificationfor array fields: an n-dimensional array specification offset, bitsize and arraysize for each dim an element specification array field f[i[1], ..., i[n]] is found at offset sum(j = 1 .. n, offset[j] + i[j] * bitsize[j]) + element offset
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?