diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-10-03 19:35:13 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-10-03 19:35:13 +0000 |
commit | 6d1ecacaf4a001fea2af72ec3682ace59f45adb8 (patch) | |
tree | 5e088896f59c55debb18b5c9c1bda3b2a2e32030 /os/kernel/src/chregistry.c | |
parent | c17f03701a8d102888ce06752c3b53fc9bd2ddac (diff) | |
download | ChibiOS-6d1ecacaf4a001fea2af72ec3682ace59f45adb8.tar.gz ChibiOS-6d1ecacaf4a001fea2af72ec3682ace59f45adb8.tar.bz2 ChibiOS-6d1ecacaf4a001fea2af72ec3682ace59f45adb8.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4733 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/src/chregistry.c')
-rw-r--r-- | os/kernel/src/chregistry.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/kernel/src/chregistry.c b/os/kernel/src/chregistry.c index 976e3a51a..8b9f40f85 100644 --- a/os/kernel/src/chregistry.c +++ b/os/kernel/src/chregistry.c @@ -56,10 +56,10 @@ /*
* OS signature in ROM plus debug-related information.
*/
-volatile ROMCONST chdebug_t ch_debug = {
- "CHRT",
- (uint8_t)sizeof (chdebug_t),
+ROMCONST chdebug_t ch_debug = {
+ "main",
(uint8_t)0,
+ (uint8_t)sizeof (chdebug_t),
(uint16_t)((CH_KERNEL_MAJOR << 11) |
(CH_KERNEL_MINOR << 6) |
(CH_KERNEL_PATCH) << 0),
|