完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
因为找出如何做到这一点很棘手(请随意给我和其他人提供我错过的文档参考),下面是我如何将 stdio 连接到 MCUExpresso 调试控制台串行端口。
相关的 gccg++ -D选项: SERIAL_PORT_TYPE_UART=1 SDK_DEBUGCONSOLE=1 DEBUG_CONSOLE_RX_ENABLE=1 SERIAL_PORT_TYPE_USBCDC=1 DEBUG_CONSOLE_TRANSFER_NON_BLOCKING USB_DEVICE_CONFIG_CDC_ACM=1 PRINTF_FLOAT_ENABLE=1 PRINTF_ADVANCED_ENABLE=1 newlib_platform_hooks.c(新文件): #include "newlib_platform_hooks.h" #include "fsl_debug_console.h" #include // Hook implementations assume assumes caller doesn't close and reopen stdin, stdout or stderr int DbgConsole_SendDataReliable(uint8_t *ch, size_t size); // TODO: Add more as needed. int _close(int file) { return 0; } int _isatty(int file) { return file <= 2; } int _fstat(int file, struct stat *st) { st->st_mode = S_IFCHR; return 0; } int _lseek(int file, int ptr, int dir) { return 0; } int _read(int file, char *s, int len) { int num_chars_read = 0; while (num_chars_read < len) { if (num_chars_read == 0) { int r = DbgConsole_Getchar(); if (r < 0) { break; } *s++ = r; } else if (DbgConsole_TryGetchar(s++) != kStatus_Success) { break; } ++num_chars_read; } return num_chars_read; } int _stat(char *file, struct stat *st) { st->st_mode = S_IFCHR; return 0; } int _write(int fd, char *s, int len) { if (len > 0) { if (fd == 1 || fd == 2) { uint8_t *p = (uint8_t*) s; uint8_t *next_char_to_write = p; for (uint8_t *end = next_char_to_write + len; p != end; ++p) { if (*p == '\n') { if (next_char_to_write != p) { DbgConsole_SendDataReliable(next_char_to_write, p - next_char_to_write); } DbgConsole_SendDataReliable((uint8_t*) "\r", 1); next_char_to_write = p; } } if (next_char_to_write != p) { DbgConsole_SendDataReliable(next_char_to_write, p - next_char_to_write); } } } return len; } |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
1932个成员聚集在这个小组
加入小组我的项目我做主,使用GN+Ninja来完成构建系统(VSCode开发RT106X)
36417 浏览 0 评论
NXP IMX8应用处理器快速入门必备:技巧、使用、设计指南
4824 浏览 1 评论
6102 浏览 1 评论
6815 浏览 0 评论
NXP i.MX6UL开发板(linux系统烧录+规格+硬件+模块移植)使用手册
4247 浏览 0 评论
642浏览 2评论
求助,S32G上Core M启动后如何让Core A在Flash指定位置加载uboot?
639浏览 2评论
ESP32-WROVER-IE + LAN8720以太网,GPIO0电压只有1.6v,无法正常进入spi flash boot模式如何解决?
640浏览 2评论
求分享适用于PN7160 Android的NFC工厂测试应用程序
727浏览 2评论
838浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-20 18:31 , Processed in 1.135208 second(s), Total 76, Slave 60 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号