stm32中如何使用printf打印spi数据

发布于 2025-01-12 21:57:18 字数 290 浏览 0 评论 0原文

printf()可以用于UART数据输出,那么SPI数据呢? 我重写fputc()并使用hal_spi_transmite(),数据会通过SPI打印吗?

int fputc(int ch, FILE *f)
{
    LoRa_transmit(&myLoRa, &send_data[i], 128, 500);
    return ch;
}

printf() can be used in UART data output, how about SPI data?
I rewrite the fputc() and using hal_spi_transmite(), will the data be printed via SPI?

int fputc(int ch, FILE *f)
{
    LoRa_transmit(&myLoRa, &send_data[i], 128, 500);
    return ch;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星星的軌跡 2025-01-19 21:57:18

UART数据输出可以使用printf,那么SPI数据呢?

我不知道 LoRa_transmit() 到底做什么,但此函数中要打印的数据是 int ch 而不是 send_data[i] :

int fputc(int ch, FILE *f)
{
   LoRa_transmit(&myLoRa, &ch, 128, 500);
   return ch;
}

数据会通过spi打印吗?

它会工作,但不会像你期望的那样(我猜),因为一些细节:

  1. SPI 通信始终涉及一个主设备和至少一个从设备。该角色无法更改,因为只有主设备才能控制片选引脚。
  2. SPI 协议通常涉及在向从设备发送任何数据之前发送控制命令。

因此,将会发生的情况是,只有主设备可以使用“printf()”方法,并且只有当从设备需要像输入流这样的数据时,它才会起作用。

假设您调用printf("Hello SPI");,主设备将开始传输(CS和时钟),发送字符串的第一个字节,关闭传输并重复这些步骤直到到达结束字符串的。

printf can be used in uart data output,how about SPI data?

I don't know exactly what LoRa_transmit() do but the data to be printed in this function is int ch and not send_data[i]:

int fputc(int ch, FILE *f)
{
   LoRa_transmit(&myLoRa, &ch, 128, 500);
   return ch;
}

will the data printed via spi?

It will work, but not as you expect (I guess) because of a few details:

  1. SPI communication involves always one master and at least one slave device. The role cannot be changed because only the master device has control of the chip-select pin.
  2. SPI protocols usually involve sending a control command before sending any data to the slave device.

So what will happen is that only the master device can use the "printf()" approach and it will only work if the slave device is expecting data like an input stream.

Supposing you call printf("Hello SPI");, the master device will start transmission (CS and clock), send the first byte of the string, close the transmission and repeat these steps until reaching the end of the string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文