eide icon indicating copy to clipboard operation
eide copied to clipboard

An embedded development environment for mcs51/stm8/avr/cortex-m/riscv on VsCode.

Results 55 eide issues
Sort by recently updated
recently updated
newest added

在编译时候vscode日志显示执行的命令是 `“cmd.exe /C "unify_builder -p "d:\Code\STM32\EIDE\STM32_Study\7-1 AD单通道\build\Debug\builder.params""”` 然后链接器收到的路径会带有乱码导致编译失败 `F:/Programing/STM32CubeIDE/STM32CubeCLT_1.18.0/GNU-tools-for-STM32/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/bin/ld.exe: cannot open linker script file d:/Code/STM32/EIDE/STM32_Study/7-1 AD锟斤拷通锟斤拷/stm32f1x_64KB_flash.ld: No such file or directory collect2.exe: error: ld returned 1 exit status` builder.params文件里面的中文字符是能正常用UTF-8解码的,里面linker部分如下,感觉也没什么问题 >...

论坛连接:https://discuss.em-ide.com/d/866-stm32f103-cortex-m3-quickstarts/2 我用默认模版创建的项目,在替换md.s为hd.s发现两者的区别,请问如何使用汇编的Pack构建项目,有更为详细的流程吗?希望解答,thanks ![Image](https://github.com/user-attachments/assets/89c1672c-dd4f-473f-93c7-2d49ea86ef86)

刚安装EIDE就要安装net6,安装后重启vs又要我修复,不修复就启动net6失败,需要手动安装(net6.0.53),手动安装又弹出net6安装

**What are you doing?** 我在使用stm32cubeMX 生成了一个makefile 工程(e.g. hello_world). 然后通过vscode 打开文件, 用eide在同级目录下创建一个同名字的项目(e.g. hello_world).. 以实现同命名文件自动跳转到同一级文件夹;(以stm32f411为例) **Describe the bug** 这个使用. 该文件夹下的startup_stm32f411xe.s 里面的内容就会被强制覆盖内容成 " -E startup_stm32f411xe.S " 从而导致编译bug. **Expected behavior** 不产生干涉 **Screenshots** null **Desktop...

How would I specify a build directory on a different drive and path? I'd like to specify E:\Elecprog\arm_output Whatever I try I get a "Not match RegExp" error. Thank you.

请问如何配置烧录时执行的命令或传递的参数? 具体来说,图1中由于STM32_Programmer_CLI不支持中文路径,会导致烧录失败: ![Image](https://github.com/user-attachments/assets/4f173369-0f17-4a13-bd06-626bd81e4992) 能否将其修改成传递“download”参数时传递相对路径,而非绝对路径?这样的话即使项目文件夹命名存在中文也能成功烧录,只要hex文件名不是中文即可: ![Image](https://github.com/user-attachments/assets/b2d061ae-4bd7-4fb2-81dd-5be5e0ed5ed5)

**What are you doing?** 当启用eide扩展,启动vscode时,会提示[error] [窗口] [Extension Host] PEO": SCLa9)5DD#J=N^7(UR5=ND

虽然目前 clangd 并不支持 sdcc,但通过添加配置文件和定义可以正常使用。 目前 eide 自动兼容的官方 cpp 扩展并不完整支持 sdcc([相关 issue](https://github.com/microsoft/vscode-cpptools/issues/2499)),使 clangd 开箱即用有助于方便用户使用。 对于 89c52_SDCC,示例如下: ```yaml # 自动生成文件: .clangd # 部分内容与项目设置有关,需要 eide 自动生成和更新。 CompileFlags: Add: - -std=c2x - -D__SDCC -...

**What you want to do** I need a way to crate a custom sdcc.model.json or override values in the original one. The platform I am programming on will not compile...

请教一下,配置了"EIDE.ARM.Option.AxfToElf": true,为什么编译后没有elf文件生成呀?