aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/CAN
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-03-18 18:38:08 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-03-18 18:38:08 +0000
commite7e79a6ccb4f3e320b2b8b7bad1b14d65218641d (patch)
treec75e12ddb0eca0006c37395667deff3f02816b8b /testhal/STM32/CAN
parent47326e33d39ac1086cd0c62a10b0a30428033335 (diff)
downloadChibiOS-e7e79a6ccb4f3e320b2b8b7bad1b14d65218641d.tar.gz
ChibiOS-e7e79a6ccb4f3e320b2b8b7bad1b14d65218641d.tar.bz2
ChibiOS-e7e79a6ccb4f3e320b2b8b7bad1b14d65218641d.zip
License updated.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2827 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/CAN')
-rw-r--r--testhal/STM32/CAN/ch.ld3
-rw-r--r--testhal/STM32/CAN/chconf.h3
-rw-r--r--testhal/STM32/CAN/halconf.h3
-rw-r--r--testhal/STM32/CAN/main.c9
-rw-r--r--testhal/STM32/CAN/mcuconf.h3
5 files changed, 13 insertions, 8 deletions
diff --git a/testhal/STM32/CAN/ch.ld b/testhal/STM32/CAN/ch.ld
index 44f494121..ae79ddd40 100644
--- a/testhal/STM32/CAN/ch.ld
+++ b/testhal/STM32/CAN/ch.ld
@@ -1,5 +1,6 @@
/*
- ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
+ 2011 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/testhal/STM32/CAN/chconf.h b/testhal/STM32/CAN/chconf.h
index 3353391ca..04fa822cc 100644
--- a/testhal/STM32/CAN/chconf.h
+++ b/testhal/STM32/CAN/chconf.h
@@ -1,5 +1,6 @@
/*
- ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
+ 2011 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/testhal/STM32/CAN/halconf.h b/testhal/STM32/CAN/halconf.h
index 2536b39d6..665572608 100644
--- a/testhal/STM32/CAN/halconf.h
+++ b/testhal/STM32/CAN/halconf.h
@@ -1,5 +1,6 @@
/*
- ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
+ 2011 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/testhal/STM32/CAN/main.c b/testhal/STM32/CAN/main.c
index 7fb08de10..c8879d6d4 100644
--- a/testhal/STM32/CAN/main.c
+++ b/testhal/STM32/CAN/main.c
@@ -1,5 +1,6 @@
/*
- ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
+ 2011 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -56,7 +57,7 @@ static msg_t can_rx(void *p) {
}
/*
- * Transmitter thread.
+ * Transmitter thread.
*/
static WORKING_AREA(can_tx_wa, 256);
static msg_t can_tx(void * p) {
@@ -93,12 +94,12 @@ int main(void) {
chSysInit();
/*
- * Activates the CAN driver 1.
+ * Activates the CAN driver 1.
*/
canStart(&CAND1, &cancfg);
/*
- * Starting the transmitter and receiver threads.
+ * Starting the transmitter and receiver threads.
*/
chThdCreateStatic(can_rx_wa, sizeof(can_rx_wa), NORMALPRIO + 7, can_rx, NULL);
chThdCreateStatic(can_tx_wa, sizeof(can_tx_wa), NORMALPRIO + 7, can_tx, NULL);
diff --git a/testhal/STM32/CAN/mcuconf.h b/testhal/STM32/CAN/mcuconf.h
index ea7941a4f..2f50634ce 100644
--- a/testhal/STM32/CAN/mcuconf.h
+++ b/testhal/STM32/CAN/mcuconf.h
@@ -1,5 +1,6 @@
/*
- ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
+ 2011 Giovanni Di Sirio.
This file is part of ChibiOS/RT.