feat add control_framework, read json file OK

This commit is contained in:
Liu_Weichao
2022-11-24 10:46:54 +08:00
parent 2a8a11849d
commit bc47ae644f
13 changed files with 144 additions and 112 deletions
@@ -48,8 +48,7 @@ Modification:
/* Entry Point */
ENTRY(Reset_Handler)
HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x0400;
STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x1000;
STACK_SIZE = 0x4000;
/* Specify the memory areas */
MEMORY
@@ -85,7 +85,7 @@
void enet_delay(void)
{
volatile uint32_t i = 0;
for (i = 0; i < 1000000; ++i)
for (i = 0; i < 10000000; ++i)
{
__asm("NOP"); /* delay */
}
@@ -5,6 +5,7 @@
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "board.h"
#include <shell.h>
#define EXAMPLE_SEMC_START_ADDRESS (0x80000000U)