diff options
author | edolomb <none@example.com> | 2018-04-12 11:53:01 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2018-04-12 11:53:01 +0000 |
commit | 5a60288080d3095f87258b94e8d89ad02b6265c8 (patch) | |
tree | ec49e6e342609c264ed3072817bfcdf59511ae05 /testhal | |
parent | aab0bf3febc80130afd80b9dd4dc10a0218898e1 (diff) | |
download | ChibiOS-5a60288080d3095f87258b94e8d89ad02b6265c8.tar.gz ChibiOS-5a60288080d3095f87258b94e8d89ad02b6265c8.tar.bz2 ChibiOS-5a60288080d3095f87258b94e8d89ad02b6265c8.zip |
Updated SPI speed
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11913 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/ATSAMA5D2/FLEX-SPI/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/ATSAMA5D2/FLEX-SPI/main.c b/testhal/ATSAMA5D2/FLEX-SPI/main.c index c870f6b7e..8d28c64c1 100644 --- a/testhal/ATSAMA5D2/FLEX-SPI/main.c +++ b/testhal/ATSAMA5D2/FLEX-SPI/main.c @@ -29,7 +29,7 @@ static const SPIConfig hs_spicfg = { NULL, /* callback if present */
0, /* cs pad number */
SPI_MR_MODFDIS | SPI_MR_LLB, /* mr register */
- SPI_CSR_SCBR(1) /* csr */
+ SPI_CSR_SCBR(3) /* csr */
};
/*
@@ -39,7 +39,7 @@ static const SPIConfig ls_spicfg = { NULL, /* callback if present */
0, /* cs pad number */
SPI_MR_MODFDIS | SPI_MR_LLB, /* mr register */
- SPI_CSR_SCBR(1) /* csr */
+ SPI_CSR_SCBR(166) /* csr */
};
/*
|