summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-10-27 16:39:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-10-27 16:39:48 +0000
commit2327e33b3fb751074e08a53bf6b1892b8fcf340e (patch)
treefdbcc44836c7d30bd68c922bcefaeb24b5bb5835
parente45c64051366a3ca07d269452e02fa153831c251 (diff)
downloadnuttx-2327e33b3fb751074e08a53bf6b1892b8fcf340e.tar.gz
nuttx-2327e33b3fb751074e08a53bf6b1892b8fcf340e.tar.bz2
nuttx-2327e33b3fb751074e08a53bf6b1892b8fcf340e.zip
Smaller delay still works (probably could be even smaller)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1083 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/configs/mcu123-lpc214x/src/up_spi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/configs/mcu123-lpc214x/src/up_spi.c b/nuttx/configs/mcu123-lpc214x/src/up_spi.c
index 60ddf43a0..7a1789572 100644
--- a/nuttx/configs/mcu123-lpc214x/src/up_spi.c
+++ b/nuttx/configs/mcu123-lpc214x/src/up_spi.c
@@ -311,7 +311,7 @@ void spi_sndblock(FAR struct spi_dev_s *dev, FAR const ubyte *buffer, size_t buf
else if ((sr & LPC214X_SPI1SR_TFE) == 0)
{
- up_udelay(200);
+ up_udelay(100);
sr = getreg8(LPC214X_SPI1_SR);
}
}