Send commitlog mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r4197 -
      trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-bt/src
      ([EMAIL PROTECTED])
   2. r4198 - trunk/src/target/audio/fic-gta02
      ([EMAIL PROTECTED])
   3. r4199 - developers/tick/scripts ([EMAIL PROTECTED])
--- Begin Message ---
Author: graeme
Date: 2008-03-12 23:46:08 +0100 (Wed, 12 Mar 2008)
New Revision: 4197

Modified:
   
trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-bt/src/openmoko-panel-bt.c
Log:
fix typo, Bluetooh -> Bluetooth thanks to [EMAIL PROTECTED]



Modified: 
trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-bt/src/openmoko-panel-bt.c
===================================================================
--- 
trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-bt/src/openmoko-panel-bt.c
  2008-03-12 22:35:40 UTC (rev 4196)
+++ 
trunk/src/target/OM-2007.2/panel-plugins/openmoko-panel-bt/src/openmoko-panel-bt.c
  2008-03-12 22:46:08 UTC (rev 4197)
@@ -77,7 +77,7 @@
 
     ret = set_bt_power(1);
     mb_panel_update(applet, 1);
-    nn = notify_notification_new ("Bluetooh turned on", NULL, NULL, NULL);
+    nn = notify_notification_new ("Bluetooth turned on", NULL, NULL, NULL);
     notify_notification_show (nn, NULL);
 }
 
@@ -89,7 +89,7 @@
 
     ret = set_bt_power(0);
     mb_panel_update(applet, 0);
-    nn = notify_notification_new ("Bluetooh turned off", NULL, NULL, NULL);
+    nn = notify_notification_new ("Bluetooth turned off", NULL, NULL, NULL);
     notify_notification_show (nn, NULL);
 }
 




--- End Message ---
--- Begin Message ---
Author: sean_chiang
Date: 2008-03-13 02:54:31 +0100 (Thu, 13 Mar 2008)
New Revision: 4198

Modified:
   trunk/src/target/audio/fic-gta02/gsmhandset.state
Log:
pass the receiver volume & receiver idle noise

Modified: trunk/src/target/audio/fic-gta02/gsmhandset.state
===================================================================
--- trunk/src/target/audio/fic-gta02/gsmhandset.state   2008-03-12 22:46:08 UTC 
(rev 4197)
+++ trunk/src/target/audio/fic-gta02/gsmhandset.state   2008-03-13 01:54:31 UTC 
(rev 4198)
@@ -36,8 +36,8 @@
                comment.range '0 - 127'
                iface MIXER
                name 'Speaker Playback Volume'
-               value.0 127
-               value.1 127
+               value.0 112
+               value.1 112
        }
        control.5 {
                comment.access 'read write'
@@ -776,7 +776,7 @@
                comment.count 1
                iface MIXER
                name 'Right Mixer Right Playback Swit'
-               value true
+               value false
        }
        control.82 {
                comment.access 'read write'
@@ -808,7 +808,7 @@
                comment.count 1
                iface MIXER
                name 'Left Mixer Left Playback Switch'
-               value true
+               value false
        }
        control.86 {
                comment.access 'read write'




--- End Message ---
--- Begin Message ---
Author: tick
Date: 2008-03-13 04:42:12 +0100 (Thu, 13 Mar 2008)
New Revision: 4199

Added:
   developers/tick/scripts/checkMacro
Log:
adding a check #ifdef  #else #endif macro tool


Added: developers/tick/scripts/checkMacro
===================================================================
--- developers/tick/scripts/checkMacro  2008-03-13 01:54:31 UTC (rev 4198)
+++ developers/tick/scripts/checkMacro  2008-03-13 03:42:12 UTC (rev 4199)
@@ -0,0 +1,26 @@
+#!/usr/bin/awk -f
+BEGIN {
+       tab=0;
+}
+{
+       show=0;
+       if (index($1,"#if")==1 || 
+           index($1,"#else")==1 || 
+           index($1,"#elif")==1 || 
+           index($1,"#endif")==1 ) {
+               show=1;
+       }
+       if (index($1,"#endif")==1 || index($1,"#else")==1 || 
index($1,"#elif")==1) {
+               tab--;
+       }
+       if (show==1) {
+               printf("%4d:",NR);
+               for(i=0;i<tab;i++) {
+                       printf("   ");
+               }
+               print $0
+       }
+       if (index($1,"#if")==1 || index($1,"#else")==1 || index($1,"#elif")==1) 
{
+               tab++;
+       }
+}


Property changes on: developers/tick/scripts/checkMacro
___________________________________________________________________
Name: svn:executable
   + *




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to