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

📄 debug.h

📁 AVRMEG32编写的一个项目代码,里面包含一般应用的模块.
💻 H
字号:
/*! \file debug.h \brief Debugging function library. */
//*****************************************************************************
//
// File Name	: 'debug.h'
// Title		: Helpful debugging functions
// Created		: 
// Revised		: 
// Version		: 0.1
// Target MCU	: Atmel AVR series and other targets
// Editor Tabs	: 4
//
// Description	: This file contains a set of functions which may be useful
//		for general debugging.
//
//*****************************************************************************

#ifndef DEBUG_H
#define DEBUG_H

#include "global.h"

// defines

// function prototypes

//! Print a part of memory as a formatted hex table with ascii translation
void debugPrintHexTable(u16 length, u08 *buffer);


#endif

⌨️ 快捷键说明

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