Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
debug/debug.h
- Committer:
- shimizuta
- Date:
- 2019-05-02
- Revision:
- 17:2b3fa9b1a05b
- Parent:
- 16:1e91753f0a01
- Child:
- 20:e30e6e175991
File content as of revision 17:2b3fa9b1a05b:
/** @file
*@brief デバッグ(teraterm表示)用のファイルです.DEBUG(引数);と打つとデバッグされます.
*本ヘッダファイル内のDEBUG_ONをdefineしなければと全てのデバッグ機能をなくすことが出来ます.
*/
#ifndef TEMPLATE_COMMON_DEBUG_DEBUG_H
#define TEMPLATE_COMMON_DEBUG_DEBUG_H
#include "mbed.h"
//#define DEBUG_ON//デバッグ用。使わないときはコメントアウト
#ifdef DEBUG_ON
extern Serial pc;
//printf(...)と同義
#define DEBUG(...) pc.printf("" __VA_ARGS__);
#else
//DEBUGと言われても何もしない
#define DEBUG(...)
#endif
#endif