uint8_t LTC6804_rdcv
(uint8_t reg, // Controls which cell voltage register is read back.
uint8_t total_ic, // the number of ICs in the system
uint16_t cell_codes[][12] // Array of the parsed cell codes
)
大家好,由于我不太懂指标,想请问若有上面那样一个函式可以用
我对第三个引数有点疑问
cell_codes[][12]这个指标的第一个index内没有设大小
是不是代表我在呼叫这个函式的地方,
先宣告一个矩阵,再把起点传过来即可
比如我希望传进来是一个3*12的指标起点
uint16_t A[3][12]
呼叫函式时用LTC6804(ARG1,ARG2,A[0][0])
即可?