forked from Archive/PX4-Autopilot
Fix a optimization related problem in the LM3S
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4907 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
parent
f9520e4ffa
commit
cc30d1b9de
|
@ -2952,4 +2952,8 @@
|
|||
Xplorer board. This is just to facilitate testing of the LPC43xx
|
||||
port but will, with any luck, become proper board support for that
|
||||
board.
|
||||
* arch/arm/src/lm3s/lm3s_syscontrol.c: Fix an optimization related problem
|
||||
by adding a volatile qualifier to a timing loop. Oddly, the consequence
|
||||
of the bug is that when debug was off, the LM3S platform too a long time
|
||||
to boot. It now boots rapidly whether debug is on or off.
|
||||
|
||||
|
|
|
@ -110,7 +110,7 @@ static inline void lm3s_oscdelay(uint32_t rcc, uint32_t rcc2)
|
|||
* current clock rate is very slow.
|
||||
*/
|
||||
|
||||
uint32_t delay = FAST_OSCDELAY;
|
||||
uint32_t delay = FAST_OSCDELAY;
|
||||
|
||||
/* Are we currently using RCC2? */
|
||||
|
||||
|
@ -150,7 +150,7 @@ static inline void lm3s_oscdelay(uint32_t rcc, uint32_t rcc2)
|
|||
|
||||
static inline void lm3s_plllock(void)
|
||||
{
|
||||
uint32_t delay;
|
||||
volatile uint32_t delay;
|
||||
|
||||
/* Loop until the lock is achieved or until a timeout occurs */
|
||||
|
||||
|
|
|
@ -268,7 +268,7 @@ Stellaris EKK-LM3S9B96 Evaluation Kit Configuration Options
|
|||
|
||||
CONFIG_DRAM_SIZE - Describes the installed DRAM (SRAM in this case):
|
||||
|
||||
CONFIG_DRAM_SIZE=0x00010000 (64Kb)
|
||||
CONFIG_DRAM_SIZE=0x00018000 (96Kb)
|
||||
|
||||
CONFIG_DRAM_START - The start address of installed DRAM
|
||||
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
|
||||
void lm3s_boardinitialize(void)
|
||||
{
|
||||
/* Configure SPI chip selects if 1) SSI is not disabled, and 2) the weak function
|
||||
/* Configure chip selects if 1) SSI is not disabled, and 2) the weak function
|
||||
* lm3s_ssiinitialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
|
|
|
@ -99,13 +99,13 @@
|
|||
* Name: lm3s_ssiinitialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select GPIO pins for the LM3S6965 Eval Kit.
|
||||
* Called to configure chip select GPIO pins for the LM3S9B96 Eval board.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function lm3s_ssiinitialize(void)
|
||||
{
|
||||
/* Configure the SPI CS GPIO */
|
||||
/* Configure the CS GPIO */
|
||||
#if 0
|
||||
ssi_dumpgpio("lm3s_ssiinitialize() Entry");
|
||||
ssi_dumpgpio("lm3s_ssiinitialize() Exit");
|
||||
|
|
Loading…
Reference in New Issue