blob: d08f91fd16015df9ed518deb354e881adca1705b (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
ChibiOS/RT is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
ChibiOS/RT 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, see <http://www.gnu.org/licenses/>.
*/
#include <ch.h>
#ifdef CH_USE_DEBUG
TraceBuffer dbgtb;
char *dbglastmsg;
/**
* Debug subsystem initialization.
*/
void chDbgInit(void) {
dbgtb.tb_size = TRACE_BUFFER_SIZE;
dbgtb.tb_ptr = &dbgtb.tb_buffer[0];
}
/**
* Inserts in the circular debug trace buffer a context switch record.
* @param otp the thread being switched out
* @param ntp the thread to be resumed
*/
void chDbgTrace(Thread *otp, Thread *ntp) {
dbgtb.tb_ptr->cse_slpdata = otp->p_common;
#ifdef CH_USE_SYSTEMTIME
dbgtb.tb_ptr->cse_time = chSysGetTime();
#else
dbgtb.tb_ptr->cse_time = 0;
#endif
dbgtb.tb_ptr->cse_state = otp->p_state;
dbgtb.tb_ptr->cse_tid = ntp->p_tid;
if (++dbgtb.tb_ptr >= &dbgtb.tb_buffer[TRACE_BUFFER_SIZE])
dbgtb.tb_ptr = &dbgtb.tb_buffer[0];
}
/**
* Prints a message on the console/debugger. The latest message pointer
* is retained.
*/
void chDbgPuts(char *msg) {
dbglastmsg = msg;
chSysPuts(msg);
}
/**
* Prints a panic message on the console/debugger and then halts the system.
*/
void chDbgPanic(char *msg) {
chSysPuts("PANIC: ");
chDbgPuts(msg);
chSysHalt();
}
#endif /* CH_USE_DEBUG */
|