]> rtime.felk.cvut.cz Git - pes-rpp/rpp-test-sw.git/commitdiff
Test software functionality temporarily reduced for SCI peripheral only
authorMichal Horn <hornmich@fel.cvut.cz>
Wed, 22 Oct 2014 12:02:20 +0000 (14:02 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Wed, 3 Dec 2014 17:51:36 +0000 (18:51 +0100)
Library, fuxed for RM48 updated,
All peripherals support, except SCI, temporarily removed to allow
testing of the current MCU initializatoin and CMD proc.
New welcome text introduced.

This commit refs  #1024

Signed-off-by: Michal Horn <hornmich@fel.cvut.cz>
rpp-test-sw/commands/main.c

index 8d334673e62f5826ca30fe011787f79b6a3206bf..b1f38ef218762c72273766c2705053fb6dd5e51f 100644 (file)
@@ -20,7 +20,8 @@
  */\r
 \r
 /* Include Files */\r
-#include "rpp/rpp.h"\r
+#include "rpp/sci.h"\r
+#include "os/os.h"\r
 #include "cmdproc_freertos_tms570.h"\r
 #include "version.h" // Generated by Eclipse in the pre-build step\r
 \r
  */\r
 void main(void)\r
 {\r
-       rpp_init();\r
+       rpp_sci_init();\r
 \r
        // Speed up the SCI\r
        rpp_sci_setup(115200);\r
 \r
-       rpp_sci_printf("\nRapid Prototyping Platform v00.01-001\n");\r
+       rpp_sci_printf("\nTi HDK RM48L952, FreeRTOS %d.%d.%d\n", FREERTOS_VERSION_NUMBER_MAYOR, FREERTOS_VERSION_NUMBER_MINOR, FREERTOS_VERSION_NUMBER_REV);\r
        rpp_sci_printf("Test Software version " GIT_VERSION "\n");\r
-       rpp_sci_printf("Porsche Engineering 06/2013\n");\r
+       rpp_sci_printf("CTU in Prague 10/2014\n");\r
 \r
        initCmdProc(0);\r
        vTaskStartScheduler();\r