Update to new CONFIG_KERN.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 27 Aug 2008 14:18:16 +0000 (14:18 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 27 Aug 2008 14:18:16 +0000 (14:18 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1726 38d2e660-2303-0410-9eaa-f027e97ec537

app/battfs/appconfig.h
app/randpool/appconfig.h
bertos/cpu/arm/drv/adc_at91.c
bertos/cpu/avr/drv/adc_avr.c
bertos/drv/dataflash_test.c
bertos/drv/lcd_text.c
bertos/drv/ser.c

index 5f316bc2772844eee4b9386513d0da148a532c0d..74686264b1feead2abc55930fb88768ac2c1586f 100644 (file)
@@ -95,7 +95,7 @@
  *
  * \sa config_kern.h
  */
-#define CONFIG_KERNEL 0
+#define CONFIG_KERN 0
 
 /**
  * \name Serial driver parameters
index 075857a9fd3e3572d78552943ebd71c31286b681..75a16bb122e292daac3cfe31412b99ca140d9f12 100644 (file)
  *
  * \sa config_kern.h
  */
-#define CONFIG_KERNEL 0
+#define CONFIG_KERN 0
 
 /**
  * \name Serial driver parameters
 #define CONFIG_ADC_STROBE  0
 
 /// Enable watchdog timer.
-#define CONFIG_WATCHDOG 0 
+#define CONFIG_WATCHDOG 0
 
 /// EEPROM type for drv/eeprom.c
 #define CONFIG_EEPROM_TYPE EEPROM_24XX256
 #define CONFIG_MD2_BLOCK_LEN 16
 
 /// Use standard permutation in MD2 algorithm.
-#define CONFIG_MD2_STD_PERM 0 
+#define CONFIG_MD2_STD_PERM 0
 
 /// Define a size, in byte, of entropy pool.
 #define CONFIG_SIZE_ENTROPY_POOL 256
index dbeb6117ffbc57e7da78be8bd5913e376bd30310..b385184ea7c4a3fd9a442143ce9d726155698b36 100644 (file)
@@ -61,7 +61,7 @@
 
 #include <io/arm.h>
 
-#if CONFIG_KERNEL
+#if CONFIG_KERN
        #include <cfg/module.h>
        #include <kern/proc.h>
        #include <kern/signal.h>
                ADC_IER = BV(ADC_DRDY);
        }
 
-#endif /* CONFIG_KERNEL */
+#endif /* CONFIG_KERN */
 
 
 /**
@@ -129,14 +129,14 @@ INLINE uint16_t adc_hw_read(void)
 {
        ASSERT(!(ADC_SR & ADC_EOC_MASK));
 
-       #if CONFIG_KERNEL
+       #if CONFIG_KERN
                adc_process = proc_current();
        #endif
 
        // Start convertion
        ADC_CR = BV(ADC_START);
 
-       #if CONFIG_KERNEL
+       #if CONFIG_KERN
                // Ensure IRQs enabled.
                ASSERT(IRQ_ENABLED());
                sig_wait(SIG_ADC_COMPLETE);
@@ -193,7 +193,7 @@ INLINE void adc_hw_init(void)
        ADC_MR |= ((ADC_COMPUTED_SHTIME << ADC_SHTIME_SHIFT) & ADC_SHTIME_MASK);
        LOG_INFO("shtime[%ld]\n", (ADC_COMPUTED_SHTIME << ADC_SHTIME_SHIFT) & ADC_SHTIME_MASK);
 
-       #if CONFIG_KERNEL
+       #if CONFIG_KERN
                //Register and enable irq for adc.
                adc_enable_irq();
        #endif
index fd8525d697d2ad35fa9ff8fa4c52f6e0204dd40d..942345a7466538e03a7c13a7a4b57896828afb8d 100644 (file)
@@ -51,7 +51,7 @@
 #define ADC_AVR_AVCC   1
 #define ADC_AVR_INT256 2
 
-#if CONFIG_KERNEL
+#if CONFIG_KERN
        #include <cfg/module.h>
        #include <kern/proc.h>
        #include <kern/signal.h>
@@ -75,7 +75,7 @@
        {
                sig_signal(adc_process, SIG_ADC_COMPLETE);
        }
-#endif /* CONFIG_KERNEL */
+#endif /* CONFIG_KERN */
 
 /**
  * Select mux channel \a ch.
@@ -104,7 +104,7 @@ INLINE uint16_t adc_hw_read(void)
        // Start convertion
        ADCSRA |= BV(ADSC);
 
-       #if CONFIG_KERNEL
+       #if CONFIG_KERN
                // Ensure IRQs enabled.
                ASSERT(IRQ_ENABLED());
                adc_process = proc_current();
@@ -143,11 +143,11 @@ INLINE void adc_hw_init(void)
 
        /* Disable Auto trigger source: ADC in Free running mode. */
        ADCSRB = 0;
-       
+
        /* Enable ADC, disable autotrigger mode. */
        ADCSRA = BV(ADEN);
 
-       #if CONFIG_KERNEL
+       #if CONFIG_KERN
                MOD_CHECK(proc);
                ADCSRA |= BV(ADIE);
        #endif
index 276f9f432079e2f5ce29b861bf6c05d759c05ae4..fa8085586d8c038d3624288426ee301435875b2f 100644 (file)
@@ -114,8 +114,8 @@ int dataflash_testSetUp(void)
         LOG_INFO("KFILE setup..ok\n");
 
         LOG_INFO("Check if kernel is enable (if enable you should see the assert message.)\n");
-        SILENT_ASSERT("bertos/drv/dataflash_test.c:119: Assertion failed: !CONFIG_KERNEL");
-        ASSERT(!CONFIG_KERNEL);
+        SILENT_ASSERT("bertos/drv/dataflash_test.c:119: Assertion failed: !CONFIG_KERN");
+        ASSERT(!CONFIG_KERN);
 
         /*
          * This test use a kfile_test module,
@@ -208,7 +208,7 @@ int main(void)
         IRQ_ENABLE;
        kdbg_init();
 
-       #if CONFIG_KERNEL
+       #if CONFIG_KERN
                 proc_init();
         #endif
 
index 9bff9bb55f2fd476258140c2413868cbe8aa0420..3423eda6c0a7111f677b9085771cbfbe3c3e4265 100644 (file)
 /** Maximum number of layers. */
 #define LCD_LAYERS 6
 
-#if CONFIG_KERNEL
+#if CONFIG_KERN
        /** Semaphore to arbitrate access to the display. */
        static struct Semaphore lcd_semaphore;
        #define LOCK_LCD        sem_obtain(&lcd_semaphore)
        #define UNLOCK_LCD      sem_release(&lcd_semaphore)
-#else /* !CONFIG_KERNEL */
+#else /* !CONFIG_KERN */
        #define LOCK_LCD        do {} while (0)
        #define UNLOCK_LCD      do {} while (0)
-#endif /* !CONFIG_KERNEL */
+#endif /* !CONFIG_KERN */
 
 DECLARE_LIST_TYPE(Layer);
 
@@ -91,7 +91,7 @@ void lcd_setAddr(Layer *layer, lcdpos_t addr)
        layer->addr = addr;
 }
 
-#if CONFIG_KERNEL
+#if CONFIG_KERN
 
 void lcd_lock(void)
 {
@@ -104,7 +104,7 @@ void lcd_unlock(void)
        UNLOCK_LCD;
 }
 
-#endif /* CONFIG_KERNEL */
+#endif /* CONFIG_KERN */
 
 
 /**
index 60b1b749e33712d0a6d0edd3a7d15ba1b9104d76..f0f06ddd72ad16677ab71c881982879d2d3a87cf 100644 (file)
@@ -69,7 +69,7 @@
  * Sanity check for config parameters required by this module.
  */
 #if !defined(CONFIG_KERN) || ((CONFIG_KERN != 0) && CONFIG_KERN != 1)
-       #error CONFIG_KERNEL must be set to either 0 or 1 in cfg_kern.h
+       #error CONFIG_KERN must be set to either 0 or 1 in cfg_kern.h
 #endif
 #if !defined(CONFIG_SER_RXTIMEOUT)
        #error CONFIG_SER_TXTIMEOUT missing in cfg_ser.h