Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
C++_cpp
keil_MDK
rtthread C/C++混合编程
发布于 2022-07-02 12:56:38 浏览:1442
订阅该版
自己裸机移植RTThread到STM32F407开发板上,想用C/C++混合编程,出现了以下问题 1.在C/C++下不添加“--cpp11“时显示 ```c ` Build target 'Target 1' compiling main.c... ..\rt-thread\T.h(14): error: #20: identifier "class" is undefined class CTIM ..\rt-thread\T.h(15): error: #65: expected a ";" { ..\rt-thread\T.h(28): warning: #12-D: parsing restarts here after previous syntax error }; ..\rt-thread\T.h(39): warning: #1-D: last line of file ends without a newline #endif User\main.c: 2 warnings, 2 errors compiling T.cpp... T.h(39): warning: #1-D: last line of file ends without a newline #endif T.cpp: 1 warning, 0 errors ".\Obj\Template.axf" - 2 Error(s), 3 Warning(s). Target not created.` ``` 2.添加”--cpp11“之后显示 } ```c board.c: 1 warning, 0 errors linking... .\Obj\Template.axf: Error: L6218E: Undefined symbol rt_thread_create (referred from thraed.o). .\Obj\Template.axf: Error: L6218E: Undefined symbol rt_timer_create (referred from thraed.o). .\Obj\Template.axf: Error: L6218E: Undefined symbol $Super$$main() (referred from components.o). .\Obj\Template.axf: Error: L6218E: Undefined symbol rt_thread_init (referred from idle.o). .\Obj\Template.axf: Error: L6218E: Undefined symbol rt_hw_stack_init (referred from thread.o). .\Obj\Template.axf: Error: L6218E: Undefined symbol rt_timer_init (referred from thread.o). .\Obj\Template.axf: Error: L6218E: Undefined symbol rt_hw_hard_fault_exception (referred from context_rvds.o). Not enough information to list image symbols. Not enough information to list load addresses in the image map. Finished: 2 information, 0 warning and 7 error messages. ".\Obj\Template.axf" - 7 Error(s), 3 Warning(s). ``` 查过百度和官方论坛,没找到问题的解决方法,想问问各位怎么解决
查看更多
a1012112796
2022-07-02
这家伙很懒,什么也没写!
感觉是语法不对, c 语言不认 ``class`` 这个关键字。 同时被 C 和 C++ 使用或定义的函数在头文件中要用 ``extern "C"`` 包裹, 示例: ``` #ifdef __cplusplus extern "C" { #endif void f1(); // .... #ifdef __cplusplus } #endif ```
1
个回答
默认排序
按发布时间排序
撰写答案
登录
注册新账号
关注者
0
被浏览
1.4k
关于作者
帮大忙了
这家伙很懒,什么也没写!
提问
1
回答
0
被采纳
0
关注TA
发私信
相关问题
1
RT-STUDIO下加入TOUCHGFX?
2
有没有人在RTT上使用C++编程
3
nano c++ 报错如何处理
4
让成员函数能作为rt_device中的回调函数
5
成员函数作为回调函数
6
C++编译问题 undefined reference to `_exit'
7
开启C++功能后,rt_kprintf和单步调试功能无法使用
8
RT-Thread Studio C++ 异常处理 (与预期不一致)
9
C++继承Thread类报错怎么办?
10
STM32使用C++ 编译报错
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
简单两步配置RTT源码阅读环境 vsc+clangd
2
恩智浦[FRDM-MCXN947]初探 之 ADC与DAC
3
LVGL使用字库IC芯片显示中文
4
基于STM32H750和Rt-Thread的CANFD通信实现的记录(一)
5
freemodbus主机在freertos的适配,参考rtthread例程
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
SFUD
msh
rt_mq_消息队列_msg_queue
keil_MDK
ulog
MicroPython
C++_cpp
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1443
个答案
289
次被采纳
张世争
805
个答案
174
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
出出啊
1
篇文章
4
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
1
次点赞
crystal266
2
篇文章
2
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部