configs/lpcxpresso-lpc54628: Correct SRAM base address in all configurations.

This commit is contained in:
Gregory Nutt
2018-01-13 08:34:58 -06:00
parent de8f3ebedb
commit fdf4e40b6a
6 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -229,7 +229,7 @@ struct pidhash_s g_pidhash[CONFIG_MAX_TASKS];
/* This is a table of task lists. This table is indexed by the task stat
* enumeration type (tstate_t) and provides a pointer to the associated
* static task list (if there is one) as well as a a set of attribute flags
* indicating properities of the list, for example, if the list is an
* indicating properties of the list, for example, if the list is an
* ordered list or not.
*/
@@ -311,7 +311,7 @@ uint8_t g_os_initstate; /* See enum os_initstate_e */
/****************************************************************************
* Private Data
****************************************************************************/
/* This is an arry of task control block (TCB) for the IDLE thread of each
/* This is an array of task control block (TCB) for the IDLE thread of each
* CPU. For the non-SMP case, this is a a single TCB; For the SMP case,
* there is one TCB per CPU. NOTE: The system boots on CPU0 into the IDLE
* task. The IDLE task later starts the other CPUs and spawns the user