aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-06-11 14:44:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-06-11 14:44:46 +0000
commit6ec6aa98962c9fcd7f80efad05f47c606bdd7820 (patch)
tree767c2cdd79760bdbde68e07d7abe03263393af2d
parentd79a8f89a8041f63f1f61517eb30fd2967c6d1e1 (diff)
downloadChibiOS-6ec6aa98962c9fcd7f80efad05f47c606bdd7820.tar.gz
ChibiOS-6ec6aa98962c9fcd7f80efad05f47c606bdd7820.tar.bz2
ChibiOS-6ec6aa98962c9fcd7f80efad05f47c606bdd7820.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5835 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--testhal/SPC56ELxx/SPI/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/SPC56ELxx/SPI/main.c b/testhal/SPC56ELxx/SPI/main.c
index c335191ad..cdabc06b9 100644
--- a/testhal/SPC56ELxx/SPI/main.c
+++ b/testhal/SPC56ELxx/SPI/main.c
@@ -115,8 +115,8 @@ int main(void) {
spiStart(&SPID1, &ls_spicfg);
SIU.PCR[37].R = PAL_MODE_OUTPUT_ALTERNATE(1); /* SCK */
SIU.PCR[38].R = PAL_MODE_OUTPUT_ALTERNATE(1); /* SOUT */
- SIU.PCR[36].R = PAL_MODE_OUTPUT_ALTERNATE(1); /* CS[0] */
- SIU.PCR[54].R = PAL_MODE_OUTPUT_ALTERNATE(1); /* CS[2] */
+ SIU.PCR[36].R = PAL_MODE_OUTPUT_ALTERNATE(1); /* CS[0] */
+ SIU.PCR[54].R = PAL_MODE_OUTPUT_ALTERNATE(1); /* CS[2] */
/* Testing sending and receiving at the same time.*/
spiExchange(&SPID1, 4, txbuf, rxbuf);