我的任务将 lwIP 从 C 转换为 C++
我得到的任务是将 lwIP 库重写为 OOP 风格,作为对象流,我开始理解,爬入这个库,但这就是问题: src\include\lwip\arch.h 包含文件 cc.h (第 43 行),我和编译器都找不到
I got the task to rewrite the library lwIP to OOP style, taking as an object stream, I began to understand, to climb into this library, but that's the problem:
src\include\lwip\arch.h include file cc.h (line 43) which can not find neither I nor the compiler
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
cc.h 是操作系统模拟层的一部分,这是将 lwip 移植到特定操作系统所需的文件之一。
移植 lwip
如果你想看看它是什么样子,你应该下载一个像 freeRTOS 这样的操作系统,我认为。
cc.h is part of the OS emulation layer, this is one of the file you need to port lwip to your particular operating system.
Porting lwip
If you want to see what it looks like, you should download an OS like freeRTOS, i think.