gpt4 book ai didi

从另一个源文件中调用 C 函数

转载 作者:行者123 更新时间:2023-11-30 21:02:13 25 4
gpt4 key购买 nike

这是我的代码:

ma​​in.c

#include <bluetooth.h>
#include <tftController.h>
main() {
initLCD();
wait();
}

蓝牙.c

#include "bluetooth.h"
void mainHandler() {
if (receieve == "start") {
startTFT();
}
}

tftController.c

void startTFT() {
sw(0x51);
delay(100);
sw(0x08);
delay(100);
putImage();
}

我面临的问题是,即使代码编译得很好,startTFT()也不会从bluetooth.c调用。任何人都可以帮助我或指出这里出了什么问题吗?非常感谢 !!!我在微 Controller 上使用它来驱动 TFT LCD。

最佳答案

您需要调用mainHandler:

ma​​in.c

#include <bluetooth.h>
#include <tftController.h>
main() {
initLCD();
mainHandler();
wait();
}

关于从另一个源文件中调用 C 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31482028/

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