diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-06-25 08:55:40 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-06-25 08:55:40 +0000 |
commit | 88bea4b8c200fad936c063718289250ce49cda61 (patch) | |
tree | 0c7cd93c45b07d4f9964f5c519afbf31b6c1fb34 /test/testmbox.c | |
parent | 62f4b7f471a4b1037468d382f927c5061e5fa9ed (diff) | |
download | ChibiOS-88bea4b8c200fad936c063718289250ce49cda61.tar.gz ChibiOS-88bea4b8c200fad936c063718289250ce49cda61.tar.bz2 ChibiOS-88bea4b8c200fad936c063718289250ce49cda61.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2038 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/testmbox.c')
-rw-r--r-- | test/testmbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testmbox.c b/test/testmbox.c index 7926f3d06..33706b5f5 100644 --- a/test/testmbox.c +++ b/test/testmbox.c @@ -155,7 +155,7 @@ static void mbox1_execute(void) { test_assert(21, mb1.mb_buffer == mb1.mb_rdptr, "read pointer not aligned to base");
}
-const struct testcase testmbox1 = {
+ROMCONST struct testcase testmbox1 = {
"Mailboxes, queuing and timeouts",
mbox1_setup,
NULL,
@@ -167,7 +167,7 @@ const struct testcase testmbox1 = { /**
* @brief Test sequence for mailboxes.
*/
-const struct testcase * const patternmbox[] = {
+ROMCONST struct testcase * ROMCONST patternmbox[] = {
#if CH_USE_MAILBOXES
&testmbox1,
#endif
|