]> rtime.felk.cvut.cz Git - pes-rpp/rpp-simulink.git/commitdiff
Fixed some typos errors.
authorCarlos Jenkins <carlos@jenkins.co.cr>
Thu, 16 May 2013 14:08:46 +0000 (16:08 +0200)
committerCarlos Jenkins <carlos@jenkins.co.cr>
Thu, 16 May 2013 14:08:46 +0000 (16:08 +0200)
rpp/rpp/rpp_lib_support.m
rpp/rpp/rpp_srmain.tlc

index 417719f1318c7ad97181b18b800b412c48c8c86a..5f6266d398b5b0441c6212dfbff8bb8316b36e15 100644 (file)
@@ -39,7 +39,7 @@ function rpp_freertos_support(modelName, buildInfo)
                'heap.c'     , ...
                'list.c'     , ...
                'port.c'     , ...
-               'portASM.c'  , ...
+               'portASM.asm', ...
                'queue.c'    , ...
                'tasks.c'    , ...
                'timers.c'   };
@@ -51,7 +51,7 @@ function rpp_freertos_support(modelName, buildInfo)
     outputFolder = fullfile(modelRoot, [modelName, '_rpp']);
 
     % Add sources to compilation
-    buildInfo.addSourceFiles(source, osLibRoot);
+    buildInfo.addSourceFiles(sources, osLibRoot);
 
     % Copy dependecy sources
     for i = sources
index b2cd646f2c79e9372829ba55403f1d4cb757ccc3..5fc1dd1d4bd2d6ef82a00fde8c211f251218148b 100644 (file)
 
     /* Kernel includes */
     #include "FreeRTOS.h"
-    #include "os_task.h"
-    #include "os_semphr.h"
-    %% FIXME: Return to original file names
-    %%#include "task.h"
-    %%#include "semphr.h"
+    #include "task.h"
+    #include "semphr.h"
 
     /* Model includes */
     #include "%<LibGetMdlPubHdrBaseName()>.h"