stm32中如何使用printf打印spi数据
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道
LoRa_transmit()
到底做什么,但此函数中要打印的数据是int ch
而不是send_data[i]
:它会工作,但不会像你期望的那样(我猜),因为一些细节:
因此,将会发生的情况是,只有主设备可以使用“printf()”方法,并且只有当从设备需要像输入流这样的数据时,它才会起作用。
假设您调用
printf("Hello SPI");
,主设备将开始传输(CS和时钟),发送字符串的第一个字节,关闭传输并重复这些步骤直到到达结束字符串的。I don't know exactly what
LoRa_transmit()
do but the data to be printed in this function isint ch
and notsend_data[i]
:It will work, but not as you expect (I guess) because of a few details:
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.