Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Haug2015-10-13 09:59:20 +0000
committerJuergen Haug2015-10-13 10:00:21 +0000
commit1295fcdf2df7486699e8d3a4c906c7b1ca2a59de (patch)
treef9ca3974e2b2d70b6342246f556f67a7e12b155f /runtime/org.eclipse.etrice.runtime.c/src
parent4127269197ba800187397393b8ac3c2ae6a9e2b9 (diff)
downloadorg.eclipse.etrice-1295fcdf2df7486699e8d3a4c906c7b1ca2a59de.tar.gz
org.eclipse.etrice-1295fcdf2df7486699e8d3a4c906c7b1ca2a59de.tar.xz
org.eclipse.etrice-1295fcdf2df7486699e8d3a4c906c7b1ca2a59de.zip
[runtime.c] added missing wakeupFromISR() of ST_32BitGeneric
Diffstat (limited to 'runtime/org.eclipse.etrice.runtime.c/src')
-rw-r--r--runtime/org.eclipse.etrice.runtime.c/src/platforms/ST_32Bit_Generic/etSema.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/org.eclipse.etrice.runtime.c/src/platforms/ST_32Bit_Generic/etSema.c b/runtime/org.eclipse.etrice.runtime.c/src/platforms/ST_32Bit_Generic/etSema.c
index 9a524edfd..aee0abff7 100644
--- a/runtime/org.eclipse.etrice.runtime.c/src/platforms/ST_32Bit_Generic/etSema.c
+++ b/runtime/org.eclipse.etrice.runtime.c/src/platforms/ST_32Bit_Generic/etSema.c
@@ -49,3 +49,10 @@ void etSema_waitForWakeup(etSema* self){
}
ET_MSC_LOGGER_SYNC_EXIT
}
+
+void etSema_wakeupFromISR(etSema* self){
+ ET_MSC_LOGGER_SYNC_ENTRY("etSema", "wakeupFromISR")
+
+ ET_MSC_LOGGER_SYNC_EXIT
+}
+

Back to the top