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 4bcb5f8 commit 5d56a7cCopy full SHA for 5d56a7c
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