⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbg-printf.c

📁 伟大的Contiki工程, 短小精悍 的操作系统, 学习编程不可不看
💻 C
字号:
#include <stdio.h>#include <debug-uart.h>#include <string.h>#include <strformat.h>static StrFormatResultwrite_str(void *user_data, const char *data, unsigned int len){  dbg_send_bytes((unsigned char*)data, len);  return STRFORMAT_OK;}static StrFormatContext ctxt =  {    write_str,    NULL  };intprintf(const char *fmt, ...){  int res;  va_list ap;  va_start(ap, fmt);  res = format_str_v(&ctxt, fmt, ap);  va_end(ap);  return res;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -