Reformat.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 16 Jun 2008 17:15:19 +0000 (17:15 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 16 Jun 2008 17:15:19 +0000 (17:15 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1469 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/cfg_lcd.h
bertos/cpu/arm/drv/twi_at91.c
bertos/drv/flash25.c

index c4974b04dacc6ee1f6b3f23b70b2861846c7b9b1..5af72b71a2bdd227e22f32ae70be68200681215e 100644 (file)
 #define CFG_LCD_H
 
 /// Number bit for lcd bus
-#define CONFIG_LCD_4BIT           1
+#define CONFIG_LCD_4BIT            0
 
 /// TODO:
-#define CONFIG_LCD_ADDRESS_FAST   1
+#define CONFIG_LCD_ADDRESS_FAST    1
 
 /// LCD setting for 32122A (AVR implementation)
 #define CONFIG_LCD_SOFTINT_REFRESH 0
index a3b2bf73096575eaaae756744aee2303498ba345..49fd74ae8c41bb496ec9115277cc1400b6f6aade 100644 (file)
@@ -181,7 +181,7 @@ bool twi_read(uint8_t id, twi_iaddr_t byte1, twi_iaddr_t byte2, twi_iaddr_t byte
        /*
         * Start reception.
         * Kludge: if we want to receive only 1 byte, the stop but *must* be set here
-        * (thanks to crappy twi implementation again).
+        * (thanks to crappy twi implementation again).
         */
        if (size == 1)
        {
@@ -250,10 +250,10 @@ void twi_init(void)
        /*
         * Compute twi clock.
         * CLDIV = ((Tlow * 2^CKDIV) -3) * Tmck
-        * CHDIV = ((THigh * 2^CKDIV) -3) * Tmck
-        * Only CLDIV is computed since CLDIV = CHDIV (50% duty cycle)
+        * CHDIV = ((THigh * 2^CKDIV) -3) * Tmck
+        * Only CLDIV is computed since CLDIV = CHDIV (50% duty cycle)
         */
-       uint16_t cldiv, ckdiv = 0;
+       uint16_t cldiv, ckdiv = 0;
        while ((cldiv = ((CLOCK_FREQ / (2 * CONFIG_TWI_FREQ)) - 3) / (1 << ckdiv)) > 255)
                ckdiv++;
 
@@ -265,3 +265,4 @@ void twi_init(void)
 
        MOD_INIT(twi);
 }
+
index 9dbcc49e72cc7aa7425cc4a24d8b6cc292aa0925..e2356bdf7d0c1d32398e7d8ef529abba0eccb1a3 100644 (file)
@@ -282,7 +282,7 @@ static size_t flash25_write(struct KFile *_fd, const void *_buf, size_t size)
                total_write += wr_len;
        }
 
-       kprintf("written %u bytes\n", total_write);
+       kprintf("written %lu bytes\n", total_write);
        return total_write;
 }
 
@@ -330,7 +330,7 @@ void flash25_sectorErase(KFileFlash25 *fd, Flash25Sector sector)
         */
        flash25_waitReady(fd);
 
-       DB(kprintf("Erased sector [%d] in %d ms\n", sector, ticks_to_ms(timer_clock() - start_time)));
+       DB(kprintf("Erased sector [%ld] in %d ms\n", sector, ticks_to_ms(timer_clock() - start_time)));
 
 }
 
@@ -364,7 +364,7 @@ void flash25_chipErase(KFileFlash25 *fd)
         */
        flash25_waitReady(fd);
 
-       DB(kprintf("Erased all memory in %d ms\n", ticks_to_ms(timer_clock() - start_time)));
+       DB(kprintf("Erased all memory in %ld ms\n", ticks_to_ms(timer_clock() - start_time)));
 
 }