Define DEBUG and DEBUGRECV unconditionally, as MSG_TRACE2 messages.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1392 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
5b46537df2
commit
3f52fcce58
|
@ -1,3 +1,8 @@
|
|||
2016-09-14 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||
|
||||
* stk500v2.c (DEBUG, DEBUGRECV): define these unconditionally,
|
||||
as MSG_TRACE2 messages.
|
||||
|
||||
2016-05-10 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||
|
||||
Submitted by Hannes Jochriem:
|
||||
|
|
12
stk500v2.c
12
stk500v2.c
|
@ -78,17 +78,9 @@
|
|||
// Retry count
|
||||
#define RETRIES 5
|
||||
|
||||
#if 0
|
||||
#define DEBUG(...) avrdude_message(MSG_INFO, __VA_ARGS__)
|
||||
#else
|
||||
#define DEBUG(...)
|
||||
#endif
|
||||
#define DEBUG(...) avrdude_message(MSG_TRACE2, __VA_ARGS__)
|
||||
|
||||
#if 0
|
||||
#define DEBUGRECV(...) avrdude_message(MSG_INFO, __VA_ARGS__)
|
||||
#else
|
||||
#define DEBUGRECV(...)
|
||||
#endif
|
||||
#define DEBUGRECV(...) avrdude_message(MSG_TRACE2, __VA_ARGS__)
|
||||
|
||||
enum hvmode
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue