NFS update; fix STM32 enabling of CAN2 clock

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4494 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-03-17 00:25:34 +00:00
parent 29e228f370
commit 3be1269844

View File

@ -229,10 +229,10 @@ int MAIN_NAME(int argc, char *argv[])
errval = 3;
goto errout_with_dev;
}
#ifndef CONFIG_EXAMPLES_CAN_READWRITE
message(" ID: %4d DLC: %d\n", msgid, msgdlc);
#endif
#ifdef CONFIG_EXAMPLES_CAN_WRITEONLY
message(" ID: %4d DLC: %d\n", msgid, msgdlc);
#endif
/* Read the RX message */
@ -246,10 +246,10 @@ int MAIN_NAME(int argc, char *argv[])
errval = 4;
goto errout_with_dev;
}
#ifndef CONFIG_EXAMPLES_CAN_READWRITE
message(" ID: %4d DLC: %d\n", rxmsg.cm_hdr.id, rxmsg.cm_hdr.dlc);
#endif
#ifndef CONFIG_EXAMPLES_CAN_READONLY
message(" ID: %4d DLC: %d\n", rxmsg.cm_hdr.id, rxmsg.cm_hdr.dlc);
#endif
/* Verify that the received messages are the same */