Refactor to use new protocol module and sipo.
[bertos.git] / mware / hex.c
diff --git a/mware/hex.c b/mware/hex.c
deleted file mode 100755 (executable)
index 2a45602..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*!
- * \file
- * <!--
- * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
- * This file is part of DevLib - See README.devlib for information.
- * -->
- *
- * \brief Poor man's hex arrays (implementation).
- *
- * \version $Id$
- *
- * \author Bernardo Innocenti <bernie@develer.com>
- */
-
-/*#*
- *#* $Log$
- *#* Revision 1.3  2006/02/10 11:30:48  bernie
- *#* C++ fixes.
- *#*
- *#* Revision 1.2  2005/03/01 23:32:05  bernie
- *#* Give due credit for this astounding creation.
- *#*
- *#*/
-
-#include "hex.h"
-
-const char hex_tab[16] = { '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f' };
-const char HEX_tab[16] = { '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' };