2013-03-28 08:26:02 +01:00
|
|
|
/* Copyright (C) 2011 Circuits At Home, LTD. All rights reserved.
|
|
|
|
|
|
|
|
This software may be distributed and modified under the terms of the GNU
|
|
|
|
General Public License version 2 (GPL2) as published by the Free Software
|
|
|
|
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
|
|
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
|
|
on this software must also be made publicly available under the terms of
|
|
|
|
the GPL2 ("Copyleft").
|
|
|
|
|
|
|
|
Contact information
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
Circuits At Home, LTD
|
|
|
|
Web : http://www.circuitsathome.com
|
|
|
|
e-mail : support@circuitsathome.com
|
|
|
|
*/
|
|
|
|
#if !defined(__MESSAGE_H__)
|
|
|
|
#define __MESSAGE_H__
|
|
|
|
|
2013-05-16 22:43:51 +02:00
|
|
|
// uncomment to activate
|
2013-06-12 05:11:43 +02:00
|
|
|
//#define DEBUG_USB_HOST
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef USB_HOST_SERIAL
|
|
|
|
#define USB_HOST_SERIAL Serial
|
|
|
|
#endif
|
2013-05-16 22:43:51 +02:00
|
|
|
|
2013-03-28 08:26:02 +01:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <avr/pgmspace.h>
|
|
|
|
|
2013-03-30 16:55:01 +01:00
|
|
|
extern int UsbDEBUGlvl;
|
|
|
|
|
|
|
|
#include "printhex.h"
|
2013-05-16 22:43:51 +02:00
|
|
|
void E_Notify(char const * msg, int lvl);
|
2013-05-16 23:03:44 +02:00
|
|
|
void E_Notify(uint8_t b, int lvl);
|
2013-05-16 22:43:51 +02:00
|
|
|
void E_NotifyStr(char const * msg, int lvl);
|
2013-05-16 23:03:44 +02:00
|
|
|
void E_Notifyc(char c, int lvl);
|
2013-03-30 16:55:01 +01:00
|
|
|
|
2013-06-12 05:11:43 +02:00
|
|
|
#ifdef DEBUG_USB_HOST
|
2013-05-16 22:43:51 +02:00
|
|
|
#define Notify E_Notify
|
|
|
|
#define NotifyStr E_NotifyStr
|
2013-05-16 23:03:44 +02:00
|
|
|
#define Notifyc E_Notifyc
|
2013-05-14 02:54:12 +02:00
|
|
|
void NotifyFailGetDevDescr(uint8_t reason);
|
|
|
|
void NotifyFailSetDevTblEntry(uint8_t reason);
|
|
|
|
void NotifyFailGetConfDescr(uint8_t reason);
|
2013-03-30 15:29:16 +01:00
|
|
|
void NotifyFailGetDevDescr(void);
|
|
|
|
void NotifyFailSetDevTblEntry(void);
|
|
|
|
void NotifyFailGetConfDescr(void);
|
|
|
|
void NotifyFailSetConfDescr(void);
|
|
|
|
void NotifyFailUnknownDevice(uint16_t VID, uint16_t PID);
|
|
|
|
void NotifyFail(uint8_t rcode);
|
|
|
|
#else
|
2013-05-16 22:43:51 +02:00
|
|
|
#define Notify(...) ((void)0)
|
|
|
|
#define NotifyStr(...) ((void)0)
|
2013-05-16 23:03:44 +02:00
|
|
|
#define Notifyc(...) ((void)0)
|
2013-05-16 22:43:51 +02:00
|
|
|
#define NotifyFailGetDevDescr(...) ((void)0)
|
|
|
|
#define NotifyFailSetDevTblEntry(...) ((void)0)
|
|
|
|
#define NotifyFailGetConfDescr(...) ((void)0)
|
|
|
|
#define NotifyFailGetDevDescr(...) ((void)0)
|
|
|
|
#define NotifyFailSetDevTblEntry(...) ((void)0)
|
|
|
|
#define NotifyFailGetConfDescr(...) ((void)0)
|
|
|
|
#define NotifyFailSetConfDescr(...) ((void)0)
|
|
|
|
#define NotifyFailUnknownDevice(...) ((void)0)
|
|
|
|
#define NotifyFail(...) ((void)0)
|
2013-03-30 15:29:16 +01:00
|
|
|
#endif
|
2013-03-28 08:26:02 +01:00
|
|
|
|
2013-05-14 02:54:12 +02:00
|
|
|
template <class ERROR_TYPE>
|
|
|
|
void ErrorMessage(uint8_t level, char const * msg, ERROR_TYPE rcode = 0) {
|
2013-06-12 05:11:43 +02:00
|
|
|
#ifdef DEBUG_USB_HOST
|
2013-05-14 02:54:12 +02:00
|
|
|
Notify(msg, level);
|
|
|
|
Notify(PSTR(": "), level);
|
2013-06-17 21:37:09 +02:00
|
|
|
D_PrintHex<ERROR_TYPE > (rcode, level);
|
2013-05-14 02:54:12 +02:00
|
|
|
Notify(PSTR("\r\n"), level);
|
2013-05-16 22:43:51 +02:00
|
|
|
#endif
|
2013-05-14 02:54:12 +02:00
|
|
|
}
|
|
|
|
|
2013-03-28 08:26:02 +01:00
|
|
|
template <class ERROR_TYPE>
|
|
|
|
void ErrorMessage(char const * msg, ERROR_TYPE rcode = 0) {
|
2013-06-12 05:11:43 +02:00
|
|
|
#ifdef DEBUG_USB_HOST
|
2013-03-28 08:26:02 +01:00
|
|
|
Notify(msg, 0x80);
|
|
|
|
Notify(PSTR(": "), 0x80);
|
2013-06-17 21:37:09 +02:00
|
|
|
D_PrintHex<ERROR_TYPE > (rcode, 0x80);
|
2013-03-28 08:26:02 +01:00
|
|
|
Notify(PSTR("\r\n"), 0x80);
|
2013-05-16 22:43:51 +02:00
|
|
|
#endif
|
2013-03-28 08:26:02 +01:00
|
|
|
}
|
|
|
|
|
2013-03-30 16:55:01 +01:00
|
|
|
#include "hexdump.h"
|
2013-03-28 08:26:02 +01:00
|
|
|
|
|
|
|
#endif // __MESSAGE_H__
|