希望有人可以在这里帮助我。对 C 语言相当陌生(来自 PHP 背景),几天前就被困在这个问题上。仍在尝试获得头部圆指针等,这是 PHP 所没有的乐趣。
所以基本上,我希望能够将数组中的特定值更新为通过 UART 给出的值。UART 一切正常。只是无法让代码工作以更新数组。来自 UART 的数据将位于下面代码中的字符串“uart”中,并将具有值“0430”(前 2 位是指数组键,第二位是要更新到的值)。
// Array values
int unsigned array[15] = {05,76,33,02,11,07,34,32,65,04,09,32,90,03,44};
// Split the UART string into required parts
// Array Key
int key;
memcpy (key, &uart[0], 2);
// New Value
int value;
memcpy (value, &uart[2], 2);
array[key] = value; // Im sure this is wrong and needs to be done via a pointer?
新数组现在应该是:{05,76,33,02,30,07,34,32,65,04,09,32,90,03,44};
任何建议都会很棒,即使是简短的解释也能很好地帮助我理解。
提前致谢