We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3627b7 commit f05737bCopy full SHA for f05737b
APIs_Platform/ScopedRamExecutionLock/README.md
@@ -0,0 +1,3 @@
1
+## ScopedRamExecutionLock example
2
+
3
+The example shows how to use ScopedRamExecutionLock class for enabling execution from RAM.
APIs_Platform/ScopedRamExecutionLock/main.cpp
@@ -0,0 +1,9 @@
+#include "mbed.h"
+int main()
4
+{
5
+ // Enable execution from RAM while in main
6
+ ScopedRamExecutionLock make_ram_executable;
7
8
+ //some_function_in_ram();
9
+}
0 commit comments