r4841 - developers/charlie/Wiki

charlie at docs.openmoko.org charlie at docs.openmoko.org
Tue Dec 2 12:53:07 CET 2008


Author: charlie
Date: 2008-12-02 12:53:05 +0100 (Tue, 02 Dec 2008)
New Revision: 4841

Modified:
   developers/charlie/Wiki/ATCommands
   developers/charlie/Wiki/MC75i
   developers/charlie/Wiki/OpenEmbedded
   developers/charlie/Wiki/OpenMokoTricks
   developers/charlie/Wiki/ParoliTodo
   developers/charlie/Wiki/Qtopia
   developers/charlie/Wiki/Todo
Log:
Update personal wiki


Modified: developers/charlie/Wiki/ATCommands
===================================================================
--- developers/charlie/Wiki/ATCommands	2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/ATCommands	2008-12-02 11:53:05 UTC (rev 4841)
@@ -62,3 +62,12 @@
 - AT+CMT	: Incoming SMS
 - AT+CMTI	: incoming stored SMS
 
+* SMS:
+- AT+CMGF=1	: use text mode
+- AT+CMGF=0	: use PDU mode
+- AT+CMGS="0939662463"\rhello\x1a	: send sms hello (need to be in text mode)
+
+
+* GPRS:
+
+- AT^SISX	: Send a ping packet

Modified: developers/charlie/Wiki/MC75i
===================================================================
--- developers/charlie/Wiki/MC75i	2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/MC75i	2008-12-02 11:53:05 UTC (rev 4841)
@@ -43,3 +43,12 @@
 AT^SSTK, AT^SSTR, AT^SSUH, AT^STBD, AT^STCD, AT^SXSM, AT_AND_F_DUMMY,
 AT_AND_F_DUMMY, AT_AND_F_DUMMY, AT_CGATT_DUMMY, ATI, ATZ
 
+
+
+* Trying with framework
+
+First I tried to use the "singleline" modem, had to solve a bug in the
+framework that prevented to make calls.
+
+Then I can set the serial line in 'singleline/modem.py', and that's
+it, we can use the framework with mc75i 

Modified: developers/charlie/Wiki/OpenEmbedded
===================================================================
--- developers/charlie/Wiki/OpenEmbedded	2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/OpenEmbedded	2008-12-02 11:53:05 UTC (rev 4841)
@@ -16,7 +16,10 @@
 - packages/linux/linux-openmoko-devel_git.bb
     contains the rules to build the kernel
 
+- conf/distro/include/moko-autorev.inc and conf/distro/include/sane-srcrevs.inc :
+    contains the version for packages
 
+
 To recreate the Package file :
  bitbake package-index
 

Modified: developers/charlie/Wiki/OpenMokoTricks
===================================================================
--- developers/charlie/Wiki/OpenMokoTricks	2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/OpenMokoTricks	2008-12-02 11:53:05 UTC (rev 4841)
@@ -18,3 +18,50 @@
   echo 0 > /sys/devices/platform/s3c2440-i2c/i2c-adapter/i2c-0/0-0073/backlight/pcf50633-bl/bl_power
   echoing 63 for brightness and
   DISPLAY=:0 xset s reset 
+
+
+** Config ssh :
+
+in .ssh/config :
+
+Host neo
+HostName 192.168.0.202
+User root
+
+
+/etc/network/interfaces
+
+auto lo
+iface lo inet loopback
+
+allow-hotplug usb0
+iface usb0 inet static
+        address 192.168.0.200
+        netmask 255.255.255.0
+        network 192.168.0.0
+        up iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &
+        up echo 1 > /proc/sys/net/ipv4/ip_forward &
+        up iptables -P FORWARD ACCEPT &
+        down iptables -D POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &
+
+
+/etc/udev/rules.d/85-ifupdown.rules :
+
+# This file causes network devices to be brought up or down as a result
+# of hardware being added or removed, including that which isn't ordinarily
+# removable.
+# See udev(7) for syntax.
+
+SUBSYSTEM=="net", DRIVERS=="?*", GOTO="net_start"
+GOTO="net_end"
+
+LABEL="net_start"
+
+# Bring devices up and down only if they're marked auto.
+# Use start-stop-daemon so we don't wait on dhcp
+ACTION=="add",          RUN+="/sbin/start-stop-daemon --start --background --pidfile /var/run/network/bogus --startas /sbin/ifup -- --force --allow auto $env{INTERFACE}"
+ACTION=="remove",       RUN+="/sbin/start-stop-daemon --start --background --pidfile /var/run/network/bogus --startas /sbin/ifdown -- --force --allow auto $env{INTERFACE}"
+ACTION=="add",          RUN+="/sbin/start-stop-daemon --start --background --pidfile /var/run/network/bogus --startas /sbin/ifup -- --force --allow hotplug $env{INTERFACE}"
+ACTION=="remove",       RUN+="/sbin/start-stop-daemon --start --background --pidfile /var/run/network/bogus --startas /sbin/ifdown -- --force --allow hotplug $env{INTERFACE}"
+
+LABEL="net_end"

Modified: developers/charlie/Wiki/ParoliTodo
===================================================================
--- developers/charlie/Wiki/ParoliTodo	2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/ParoliTodo	2008-12-02 11:53:05 UTC (rev 4841)
@@ -15,8 +15,8 @@
 
 * Illume intergration  
   - Finish DBus launcher
-  - Tichy pluging that show notifications in illume bar
-     That mean we need to see how to communicate with illume
+  - Tichy pluging that shows notifications in illume bar
+     That means we need to see how to communicate with illume
 
 o [Mirko] Paroli integration
   - Finish Evas backend
@@ -29,9 +29,6 @@
   - View message in order by time
   - Add : Export/Import all messages
  
-* SMS
-  - See a dialog when sending SMS
-
 * Keyboard Input
   - See how good the X keyboards integrate.
     Already tried with illume keyboard and SDL backend
@@ -58,6 +55,8 @@
 
 * Image Viewer app
 
+* Home app
+
 * Player app
   - See how to use gstreamer into evas
   - Add pause

Modified: developers/charlie/Wiki/Qtopia
===================================================================
--- developers/charlie/Wiki/Qtopia	2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/Qtopia	2008-12-02 11:53:05 UTC (rev 4841)
@@ -14,6 +14,8 @@
 - start illume in Xephyr
   ./x-ui.sh
 
+- export QTOPIA_PHONE_DEVICE=sim:localhost
+
 - start simulator: 
   ./bin/phonesim -p 12345 ../qtopia/src/tools/phonesim/troll.xml
 

Modified: developers/charlie/Wiki/Todo
===================================================================
--- developers/charlie/Wiki/Todo	2008-12-02 08:52:31 UTC (rev 4840)
+++ developers/charlie/Wiki/Todo	2008-12-02 11:53:05 UTC (rev 4841)
@@ -1,14 +1,16 @@
 Charly's TODO
 
-* Solve bugs #1610 and name size (put a warning)
+* Solve bugs #1610
 * See how to run sdl on framebuffer (there is a tslib problem)
 
-* See how we can use SCIM on the phone !
+* See how we can use chewing on the phone !
 
 == GSM Testing ==
+* Send email to Frank Günther (frank.guenther at cinterion.com) ask him for :
+    - GSM MUX sniffer software
+    - MUX drivers for windows ? (have a look at the project at berlios OS first)
 * Add SIM contact tests
    Nee to try this : 'AT+CPBS="SM";+CPBR=?', cause it raises an error sometime !
-* Add SMS Tests
 * Modify kernel driver to have a do_reset method in gsm_pm ?
 * See ticket #1857, try to reproduce the problem
    sent message to trac, waiting for more info
@@ -18,10 +20,10 @@
 == Tichy ==
 * Try paroli, make patches so that it works on the desktop if needed
 * Fix XWindow key problem
-* See how good tichy is as a window manager...
+* Fix windows problem with dbus launcher
+* Xwindow.start_app : quit app when we close the window
 * Create gui_edje (with default edje files for every widget)
 * New .bb file using git
-* Fix WaitDBus call timeout problem in tichy
 
 == Other ==
 * BY PLANE TICKETS FOR XMASS !!!




More information about the commitlog mailing list