-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtracer.h
37 lines (35 loc) · 1.37 KB
/
tracer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
***************************************************************************
*
* Author: John Burns
* Copyright: (C) 2014
* Contact: github@john.geek.nz
* License: GNU GPLv2
*
***************************************************************************
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
***************************************************************************
*
* The following document was a useful reference during development:
* Protocoll-Trcaer-MT-5(111213)(1).pdf
* SHA1: 7235ba2a7392c1597f6b727f27e9488223baa360
* Source: http://dl.dropbox.com/u/34579956/Protocoll-Trcaer-MT-5(111213)(1).pdf
* Author: alexruhmann@body-soft.de
* Copyright: Unknown
*
***************************************************************************
*/
#include <stdint.h>
void print_hex_memory(void *mem,int length);
void process_string(char* mem);
void process_string_verbose(char* mem);
uint16_t tracerCRC(uint8_t *CRC_Buff,uint8_t crc_len);