Other Parts Discussed in Thread: SYSCONFIG
Hello,
Is it possible to program EMU_BOOTCTRL directly on C code? I'm trying to write this configuration (based on this thread):
#include "driverlib.h" #include "device.h" #include "board.h" *(uint32_t *)0x0D00 = 0x28270B5A;
However, the compilation is failing and here is an excerpt of the build console:
>> Compilation failure subdir_rules.mk:9: recipe for target 'led_ex2_sysconfig_cpu1.obj' failed "../led_ex2_sysconfig_cpu1.c", line 73: error #18: expected a ")" "../led_ex2_sysconfig_cpu1.c", line 73: warning #78-D: this declaration has no storage class or type specifier "../led_ex2_sysconfig_cpu1.c", line 73: error #102: "uint32_t" has already been declared in the current scope "../led_ex2_sysconfig_cpu1.c", line 73: error #66: expected a ";" 3 errors detected in the compilation of "../led_ex2_sysconfig_cpu1.c".
I'm currently changing the boot configuration via Memory Browser, and then resetting the CPU (as suggested here). But it will be easier to have this settings right in the beginning of the debug session.
Thank you in advance.