Remove broken debug uart name.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 26 May 2010 17:32:32 +0000 (17:32 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 26 May 2010 17:32:32 +0000 (17:32 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3851 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/cortex-m3/drv/kdebug_lm3s.c
bertos/cpu/cortex-m3/drv/kdebug_lm3s.h
bertos/cpu/cortex-m3/drv/kdebug_stm32.c
bertos/cpu/cortex-m3/drv/kdebug_stm32.h

index 568920ecc713d77926413c187a880693e0dae2d1..3025884630d065fab6998da0fea8b0c69b9847f6 100644 (file)
@@ -42,8 +42,6 @@
 #include <drv/ser_lm3s.h>
 #include "kdebug_lm3s.h"
 
-#if CONFIG_KDEBUG_PORT == KDEBUG_PORT_DBGU
-
 #if CONFIG_KDEBUG_PORT == 0
        #define UART_BASE UART0_BASE
        #define UART_GPIO_BASE GPIO_PORTA_BASE
 
 typedef uint32_t kdbg_irqsave_t;
 
-#else
-#error CONFIG_KDEBUG_PORT should be KDEBUG_PORT_DBGU
-#endif
-
 INLINE void uart_hw_config(void)
 {
        unsigned long div, baud = CONFIG_KDEBUG_BAUDRATE;
index 4335d898d2c6d5d7fc4efb778ce92e84496f4de2..faabef4e5c4baa9a24c5b8bb46481ca90ae6b223 100644 (file)
 #ifndef DRV_KDEBUG_LM3S_H
 #define DRV_KDEBUG_LM3S_H
 
-/**
- * \name Values for CONFIG_KDEBUG_PORT.
- *
- * Select which hardware UART to use for system debug.
- *
- * \{
- */
-#define KDEBUG_PORT_DBGU 0  ///< Debug on Debug Unit.
-
-#define KDEBUG_PORT_DEFAULT KDEBUG_PORT_DBGU  ///< Default debug port.
+#define KDEBUG_PORT_DEFAULT 0  ///< Default debug port.
 /* \} */
 
 #endif /* DRV_KDEBUG_LM3S_H */
index f4368b7e5d5037ba84803ed22efb79192b54bdb3..f50f3d89c3d707ad9d2612307be32b585757eb2c 100644 (file)
@@ -111,8 +111,6 @@ struct stm32_usart
 #define USART_LASTBIT_DISABLE     ((uint16_t)0x0000)
 #define USART_LASTBIT_ENABLE      ((uint16_t)0x0100)
 
-#if CONFIG_KDEBUG_PORT == KDEBUG_PORT_DBGU
-
 #if CONFIG_KDEBUG_PORT == 0
        #define UART_BASE ((struct stm32_usart *)USART1_BASE)
 #elif CONFIG_KDEBUG_PORT == 1
@@ -136,10 +134,6 @@ struct stm32_usart
 
 typedef uint32_t kdbg_irqsave_t;
 
-#else
-#error CONFIG_KDEBUG_PORT should be KDEBUG_PORT_DBGU
-#endif
-
 #define GPIO_USART1_TX_PIN     (1 << 9)
 #define GPIO_USART1_RX_PIN     (1 << 10)
 
index ed51dbe1e18559ebd4a2eb1b69b3a9bc05ca2538..acb71a5658605d75b4e82a16885187f7140cc873 100644 (file)
 #ifndef DRV_KDEBUG_STM32_H
 #define DRV_KDEBUG_STM32_H
 
-/**
- * \name Values for CONFIG_KDEBUG_PORT.
- *
- * Select which hardware UART to use for system debug.
- *
- * \{
- */
-#define KDEBUG_PORT_DBGU 1  ///< Debug on Debug Unit.
-
-#define KDEBUG_PORT_DEFAULT KDEBUG_PORT_DBGU  ///< Default debug port.
+#define KDEBUG_PORT_DEFAULT 1  ///< Default debug port.
 /* \} */
 
 #endif /* DRV_KDEBUG_STM32_H */