首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

nios2-terminal: can't open uart: No such file or directory

nios2-terminal: can't open uart: No such file or directory

nios2-terminal: can't open uart: No such file or directory

请问这个错误是怎末回事啊 我可以保证电路正确 串口线也正确

请问可能是什么错误啊

你先确定的你的nios系统中有uart接口,然后看看你的设置的终端是不是uart。
在交流中前进,共同实现nios的应用。

使用JTAG_UART进行调试时,要在system library中把stdout\ stdin\ stderr都导向jtag_uart,这样在调试时就会在nios IIconsole中看到结果了。

nios II在调试时,启动了一个叫nios2-terminal的进程,该进程相当于一个串口调试软件,因此你可以在nios IIconsole中看到结果。当选择stdout\ stdin\ stderrJTAG_UART时,nios II会分配一个虚拟的串口给nios2-terminal,但是如果你选择stdout\ stdin\ stderr为其他UART时,nios II会分配一个实际的硬件串口给nios2-terminal,在runTatget connetion中可以选择和更改串口号,这样你就没必要使用其他的串口调试软件来调试了。

如果你想同时使用JTAG_UART和其他UART时,system library中就一定不要选上Lightweight device driver APIreduced device drivers,然后在max file descriptors中填上一个合适的数字。这样你就可以在nios IIconsole中和其他串口调试软件中分别看到JTAG_UART和其他UART发送的数据了。

返回列表