]> rtime.felk.cvut.cz Git - pes-rpp/rpp-simulink.git/commitdiff
Fixed some really stupid one white space bug.
authorCarlos Jenkins <carlos@jenkins.co.cr>
Fri, 14 Jun 2013 13:06:37 +0000 (15:06 +0200)
committerCarlos Jenkins <carlos@jenkins.co.cr>
Fri, 14 Jun 2013 13:06:37 +0000 (15:06 +0200)
rpp/demos/led_blink.slx
rpp/lib/apps/rpp-test-suite/src/main.c
rpp/lib/rpp-lib.lib
rpp/lib/rpp/doc/api/content/main_page.dox
rpp/lib/rpp/src/rpp/din.c
rpp/rpp/rpp.tlc
rpp/rpp/rpp_srmain.tlc

index 92fdb8ce0891396619d217e9fdbd78be61a8da11..b70c797091cf9dcb88052f509c785653b04e9e9f 100644 (file)
Binary files a/rpp/demos/led_blink.slx and b/rpp/demos/led_blink.slx differ
index 9604b73388fa02bc00bd90dfbb3a4aa62ceec8c2..e1e3ea2cf8fb2ab07496fc1ae47178a5f2ddc20d 100644 (file)
@@ -204,7 +204,7 @@ void wait_for_quit()
 void busy_infinite_loop()
 {
     while(TRUE) {
-        asm("nop");
+        asm(" nop");
     }
 }
 
index ed60a19980af1dca851c7af2b9a46abdca8f8a52..7203fda27b8aed26534ba5e57691612252967875 100644 (file)
Binary files a/rpp/lib/rpp-lib.lib and b/rpp/lib/rpp-lib.lib differ
index 8189d9af0ef6469b2249e47d7fd171b649a050f8..be27289bbe9eedeb8377b4f8984eab29e588d4b6 100644 (file)
@@ -105,7 +105,7 @@ void main(void)
         );
         #endif
         while(TRUE) {
-            asm("nop");
+            asm(" nop");
         }
     }
 
@@ -119,7 +119,7 @@ void main(void)
         );
     #endif
     while(TRUE) {
-        asm("nop");
+        asm(" nop");
     }
 }
 \endcode
index 36279bd44e3315239b146fad9445ef811f8cfa16..68861b9d9ff32c4fabbf85ce61fc27255f225aaf 100644 (file)
@@ -242,6 +242,7 @@ int8_t rpp_din_update()
     }
     #else
     UNUSED(config_changed);
+    UNUSED(lsb_msb);
     #endif
 
     return SUCCESS;
index 23ec59572c22c8d8afe403ab8a71e2d2d2707c9c..3ac58727f77c2ac8c1c17d06377be23d749825a3 100644 (file)
   oIdx = oIdx + 1;
 
 
-  rtwoptions(oIdx).prompt          = 'Download compiled binary to RPP';
+  rtwoptions(oIdx).prompt          = 'Download compiled binary to RPP.';
   rtwoptions(oIdx).type            = 'Checkbox';
   rtwoptions(oIdx).default         = 'off';
   rtwoptions(oIdx).tlcvariable     = 'rppDownload';
   oIdx = oIdx + 1;
 
 
-  rtwoptions(oIdx).prompt          = 'Print model metadata to SCI at start';
+  rtwoptions(oIdx).prompt          = 'Print model metadata to SCI at start.';
   rtwoptions(oIdx).type            = 'Checkbox';
   rtwoptions(oIdx).default         = 'on';
   rtwoptions(oIdx).tlcvariable     = 'rppPrintMeta';
index 5728e38e801ba179c78cf6606239d683eee7b0c6..f0fa339cc18d1464be69c88a0ffd80e2093b556c 100644 (file)
             );
             #endif
             while(TRUE) {
-                asm("nop");
+                asm(" nop");
             }
         }
 
             );
         #endif
         while(TRUE) {
-            asm("nop");
+            asm(" nop");
         }
     }