From 6ec6aa98962c9fcd7f80efad05f47c606bdd7820 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 11 Jun 2013 14:44:46 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5835 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- testhal/SPC56ELxx/SPI/main.c | 4 ++-- 1 file 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);