我有一个 atmel UC3-L0 和指南针传感器。现在我安装 AtmelStudio 并将一些演示代码下载到板上。但我不知道printf
演示代码中的函数会在哪里出现数据。我该怎么做才能获取数据?
3 回答
printf 函数输出到标准输出。
通常在没有操作系统的“裸”处理器上,您需要定义如何从物理接口(通常是 USART、控制台端口、USB 端口、4 端口 LCD 接口等)发送或接收字符。因此,通常您可能希望使用处理器板的 USART 端口使用串行电缆连接到运行 Hyperterm、PuTTY 或类似设备的 PC。
本质上,您将需要
- 使用宏创建
FILE
流和fdev_setup_stream()
- 提供指向函数的指针
get()
并put()
告诉printf()
函数如何准确地从/向该流读取和写入(例如读取/写入到 USART、LCD 显示器等)。 - 您可能有库 - 取决于您的硬件 - 已经包含此类功能(加上正确的端口初始化功能),例如 uart.c/.h、lcd.c/.h 等。
在 stdio.h 的文档中(例如此处)查找以下内容
printf()
:fdev_setup_stream()
如果您已经下载了 Atmel Studio,您可以查看 stdiodemo.c 代码以获得进一步的了解。
为了在 ATMEL studio 中使用 printf,您应该检查以下事项:
- 从 Project->ASF Wizard 添加并应用标准串行 I/O 模块。
- 还可以从 ASF 向导添加 USART 模块。
- 在 main 函数之前包含以下代码片段。
static struct usart_module usart_instance; static void configure_console(void) { struct usart_config usart_conf; usart_get_config_defaults(&usart_conf); usart_conf.mux_setting = EDBG_CDC_SERCOM_MUX_SETTING; usart_conf.pinmux_pad0 = EDBG_CDC_SERCOM_PINMUX_PAD0; usart_conf.pinmux_pad1 = EDBG_CDC_SERCOM_PINMUX_PAD1; usart_conf.pinmux_pad2 = EDBG_CDC_SERCOM_PINMUX_PAD2; usart_conf.pinmux_pad3 = EDBG_CDC_SERCOM_PINMUX_PAD3; usart_conf.baudrate = 115200; stdio_serial_init(&usart_instance, EDBG_CDC_MODULE, &usart_conf); usart_enable(&usart_instance); }
确保在 main 函数的 system_init() 之后调用 configure_console。
现在转到工具-> 扩展管理器。添加终端窗口扩展。
- 构建并运行您的程序并从视图-> 终端窗口打开终端窗口。放置您的设备正在运行的正确 com 端口并将波特率设置为 115200 并点击终端窗口上的连接。
- 您现在应该看到 printf 语句。(浮点数不会在 Atmel 工作室打印)
我最近自己也对此感到困惑。我已经安装了 Atmel Studio 7.0,并通过一个调用 printf 的示例项目使用了 SAMD21 开发板。
在示例代码中,我看到有一个配置部分:
/*!
* \brief Initialize USART to communicate with on board EDBG - SERCOM
* with the following settings.
* - 8-bit asynchronous USART
* - No parity
* - One stop bit
* - 115200 baud
*/
static void configure_usart(void)
{
struct usart_config config_usart;
// Get the default USART configuration
usart_get_config_defaults(&config_usart);
// Configure the baudrate
config_usart.baudrate = 115200;
// Configure the pin multiplexing for USART
config_usart.mux_setting = EDBG_CDC_SERCOM_MUX_SETTING;
config_usart.pinmux_pad0 = EDBG_CDC_SERCOM_PINMUX_PAD0;
config_usart.pinmux_pad1 = EDBG_CDC_SERCOM_PINMUX_PAD1;
config_usart.pinmux_pad2 = EDBG_CDC_SERCOM_PINMUX_PAD2;
config_usart.pinmux_pad3 = EDBG_CDC_SERCOM_PINMUX_PAD3;
// route the printf output to the USART
stdio_serial_init(&usart_instance, EDBG_CDC_MODULE, &config_usart);
// enable USART
usart_enable(&usart_instance);
}
在 Windows 设备管理器中,我看到“端口”下列出了“Atmel Corp. EDBG USB 端口 (COM3)”。但是,该端口的“属性”之一被列为每秒 9600 位。我将其从 9600 更改为 115200 以与上面的配置部分保持一致。
最后,我运行 PuTTY.exe 并将 Connection-->Serial 设置为 COM3 和 115200 波特。然后我去会话,然后单击串行连接类型,然后单击打开按钮。而且,BAM,还有我通过 PuTTY 输出的 printf。