Hi
I have setup a simple project to test embos with stm32f103rbt device, I just used the default settings, after changing the default complier warnings to MISRA compatible and changed the C standard to C99 and C++ to C++11 most of the errors would go away, But still there is two errors
So after searching I think I should make these symbols exported in the startup assembly file, So I tried to use these lines in the startup assembly file like this
But it would generate an error like this
Display Spoiler
another solution would be to comment these lines
in the OS_InitSysStackInfo function, Now the project would be build and when I try to debug it it would crash, so How should I test this os?
I have setup a simple project to test embos with stm32f103rbt device, I just used the default settings, after changing the default complier warnings to MISRA compatible and changed the C standard to C99 and C++ to C++11 most of the errors would go away, But still there is two errors
So after searching I think I should make these symbols exported in the startup assembly file, So I tried to use these lines in the startup assembly file like this
But it would generate an error like this
.\Objects\marlin.axf: error: L6002U: Could not open file .\objects\startup_stm32f10x_md.o: No such file or directory
another solution would be to comment these lines
in the OS_InitSysStackInfo function, Now the project would be build and when I try to debug it it would crash, so How should I test this os?