]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/udma-lld.git/commitdiff
Enable uart prints for C66x as this is working now
authorSivaraj R <sivaraj@ti.com>
Thu, 11 Jul 2019 15:34:49 +0000 (21:04 +0530)
committerSivaraj R <sivaraj@ti.com>
Thu, 11 Jul 2019 15:34:49 +0000 (21:04 +0530)
Signed-off-by: Sivaraj R <sivaraj@ti.com>
examples/udma_adc_test/udma_adc_test.c
examples/udma_chaining_test/udma_chaining_test.c
examples/udma_crc_test/udma_crc_test.c
examples/udma_dru_direct_tr_test/udma_dru_direct_tr_test.c
examples/udma_dru_test/udma_dru_test.c
examples/udma_memcpy_test/udma_memcpy_test.c
unit_test/udma_ut/src/udma_test_common.c
unit_test/udma_ut/src/udma_test_parser.c

index bee51557cc126b76127d55a7b998c8e32380adca..b1638980ff80c4f217b6d43d1696f98887bbf84f 100644 (file)
@@ -699,8 +699,8 @@ static void App_adcDeInit(void)
 
 static void App_print(const char *str)
 {
-    /* UART not yet supported on C7x/C66x */
-#if !(defined (__C7100__) || defined (_TMS320C6X))
+    /* UART not yet supported on C7x */
+#if !(defined (__C7100__))
     UART_printf("%s", str);
 #endif
     if(TRUE == Udma_appIsPrintSupported())
@@ -716,8 +716,8 @@ static void App_printNum(const char *str, uint32_t num)
     static char printBuf[200U];
 
     snprintf(printBuf, 200U, str, num);
-    /* UART not yet supported on C7x/C66x */
-#if !(defined (__C7100__) || defined (_TMS320C6X))
+    /* UART not yet supported on C7x */
+#if !(defined (__C7100__))
     UART_printf("%s", printBuf);
 #endif
     if(TRUE == Udma_appIsPrintSupported())
index 3647d299a202930aec7e5eaf0275d4456606db1b..4c01736d724375732ddcff19896141e4dd3f3185 100644 (file)
@@ -846,8 +846,8 @@ static void App_udmaTrpdInit(App_UdmaChObj *appChObj)
 
 static void App_print(const char *str)
 {
-    /* UART not yet supported on C7x/C66x */
-#if !(defined (__C7100__) || defined (_TMS320C6X))
+    /* UART not yet supported on C7x */
+#if !(defined (__C7100__))
     UART_printf("%s", str);
 #endif
     if(TRUE == Udma_appIsPrintSupported())
index 14ad633445e7bb5b6350f1ea3300535d9097b10e..829e22cfce9168301eaacde94379f0e58273c015 100644 (file)
@@ -662,8 +662,8 @@ static void App_crcInit(void)
 
 static void App_print(const char *str)
 {
-    /* UART not yet supported on C7x/C66x */
-#if !(defined (__C7100__) || defined (_TMS320C6X))
+    /* UART not yet supported on C7x */
+#if !(defined (__C7100__))
     UART_printf("%s", str);
 #endif
     if(TRUE == Udma_appIsPrintSupported())
index 55216285df07970c42cf29d70223738e618941bd..dbb3d760ff442309cca69cf38adbd045c979785e 100644 (file)
@@ -485,8 +485,8 @@ static void App_udmaTrInit(Udma_ChHandle chHandle,
 
 static void App_print(const char *str)
 {
-    /* UART not yet supported on C7x/C66x */
-#if !(defined (__C7100__) || defined (_TMS320C6X))
+    /* UART not yet supported on C7x */
+#if !(defined (__C7100__))
     UART_printf("%s", str);
 #endif
     if(TRUE == Udma_appIsPrintSupported())
index 5fe4afa247839ed2526bcdaf61b8c6b50c278b28..0f5e6e802dce80a2c4326a24ee97451e818b8e53 100644 (file)
@@ -622,8 +622,8 @@ static void App_udmaTrpdInit(Udma_ChHandle chHandle,
 
 static void App_print(const char *str)
 {
-    /* UART not yet supported on C7x/C66x */
-#if !(defined (__C7100__) || defined (_TMS320C6X))
+    /* UART not yet supported on C7x */
+#if !(defined (__C7100__))
     UART_printf("%s", str);
 #endif
     if(TRUE == Udma_appIsPrintSupported())
index 16efcad75ea444b430bc764bbb22b2aaad148b77..c456fe578ea8e938779575c8377cdd2921f9b080 100644 (file)
@@ -672,8 +672,8 @@ static void App_udmaTrpdInit(Udma_ChHandle chHandle,
 
 static void App_print(const char *str)
 {
-    /* UART not yet supported on C7x/C66x */
-#if !(defined (__C7100__) || defined (_TMS320C6X))
+    /* UART not yet supported on C7x */
+#if !(defined (__C7100__))
     UART_printf("%s", str);
 #endif
     if(TRUE == Udma_appIsPrintSupported())
index d4a1a123da445ed9cec4745de801b078432dab79..468c9668a0b36bdde93862cbe893c921e4c6524d 100644 (file)
@@ -47,7 +47,7 @@
 /*                           Macros & Typedefs                                */
 /* ========================================================================== */
 
-#if defined (_TMS320C6X) || defined (__C7100__)
+#if defined (__C7100__)
 /* UART not yet supported */
 #else
 #define APPUTILS_UART_INPUT
index 601d64f89b4c16eb2ca0fcdfb51cb8650952c05f..8e065dcf151b160b1e11cf9a62dfa3367fd15c55 100644 (file)
@@ -1376,8 +1376,8 @@ void udmaTestPrint(const char *str, ...)
         SemaphoreP_pend(gUdmaTestUtObj.lockSem, SemaphoreP_WAIT_FOREVER);
     }
 
-    /* UART not yet supported on C7x/C66x */
-#if !(defined (__C7100__) || defined (_TMS320C6X))
+    /* UART not yet supported on C7x */
+#if !(defined (__C7100__))
     UART_printf("%s", str);
 #endif