gpt4 book ai didi

根据数据表在 C 中创建数组

转载 作者:太空宇宙 更新时间:2023-11-04 01:00:36 25 4
gpt4 key购买 nike

我对 c 语言(obj-c,通常是 swift)非常陌生,我正在使用一些 Cypress BLE 开发板。我正在尝试控制一个简单的 LED。

根据 the documentation我应该简单地写入 SPI 总线来控制 LED。

相关部分如下: enter image description here

所以我写了 32 位的 0 开始。然后是RGB数组。然后是全 1 的 32 位。这是我目前正在尝试的:

static uint8 startFrame[32] = {0,0,0,0};
static uint8 colorFrame[32] = {1, 255, 0, 0};
static uint8 endFrame[32] = {1,1,1,1};


SPI_1_SpiUartPutArray(startFrame, 32);
SPI_1_SpiUartPutArray(colorFrame, 32);
SPI_1_SpiUartPutArray(endFrame, 32);

我的想法是 int 是 8 位,所以 {1,1,1,1} 的大小应该是 32。同样,我非常新并破解我的方式。非常感谢任何帮助!

SPI_1_SpiUartPutArray 的文档:

/*******************************************************************************
* Function Name: SPI_1_SpiUartPutArray
****************************************************************************//**
*
* Places an array of data into the transmit buffer to be sent.
* This function is blocking and waits until there is a space available to put
* all the requested data in the transmit buffer. The array size can be greater
* than transmit buffer size.
*
* \param wrBuf: pointer to an array of data to be placed in transmit buffer.
* The width of the data to be transmitted depends on TX data width selection
* (the data bit counting starts from LSB for each array element).
* \param count: number of data elements to be placed in the transmit buffer.
*
* \globalvars
* SPI_1_txBufferHead - the start index to put data into the
* software transmit buffer.
* SPI_1_txBufferTail - start index to get data from the software
* transmit buffer.
*
*******************************************************************************/
void SPI_1_SpiUartPutArray(const uint8 wrBuf[], uint32 count)
{
uint32 i;

for (i=0u; i < count; i++)
{
SPI_1_SpiUartWriteTxData((uint32) wrBuf[i]);
}
}

我也试过这个:

 static uint8 startFrame[32] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
static uint8 colorFrame[32] = {1,1,1, 1,1,1,1,1 , 1,1,1,1,1,1,1,1, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0};
static uint8 endFrame[32] = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1};

还有这个:

static uint8 startFrame[4] = {0x00, 0x00, 0x00, 0x00};
static uint8 colorFrame[4] = {0xff, 0xff, 0xff, 0xff};
static uint8 endFrame[4] = {0xff, 0xff, 0xff ,0xff};

SPI_1_SpiUartPutArray(startFrame, 4);
SPI_1_SpiUartPutArray(colorFrame, 4);
SPI_1_SpiUartPutArray(endFrame, 4);

还有这个:

static uint8 startFrame[4] = {0,0,0,0};
static uint8 colorFrame[4] = {255, <R>, <G>, <B>};
static uint8 endFrame[4] = {255,255,255,255};

SPI_1_SpiUartPutArray(startFrame, 4);
SPI_1_SpiUartPutArray(colorFrame, 4); // multiple of these for each LED
SPI_1_SpiUartPutArray(endFrame, 4);

如果上述任何设置都是正确的,那一定是我写入 SPI 的方式有问题。

最佳答案

您可能会遇到一些问题。

首先... SPI 通常或多或少是事务性的。与 UART(作为常见的反例)不同,您不会随心所欲地编写任何内容。您通常需要切换芯片选择(有时是“从选择”),一次一个“时钟输出”字,然后以另一种方式切换芯片选择。如果没有关于 SPI_1_SpiUartPutArray() 的文档,很难说您是否可以在同一传输中多次调用它(在芯片选择切换之间)。

编辑:不要介意芯片选择的事情。这个 LED 驱动器似乎没有芯片选择/启用线。请注意以供将来引用,这对于 SPI 来说是不寻常的。

第二个问题 - 我假设 SPI_1_SpiUartPutArray() 一次输出 BYTES,而不是位。同样,您没有提供该功能的文档,因此很难说。如果我的假设是正确的,你会希望 startFramestatic uint8 startFrame[4] = {0xff, 0xff, 0xff, 0xff}; 因为有 8 位在一个byte 为您提供 32 位帧起始。同样的想法适用于颜色和框架结束。

第三个问题 - 如果我对 SPI 函数的工作方式有误,则说明您没有完全初始化这些数组。您声明了 32 个字节 的数组,然后只初始化了其中的 4 个。

关于根据数据表在 C 中创建数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41149740/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com