meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
maemo2010:start [2010/08/19 16:08]
grp8
maemo2010:start [2010/08/20 13:54]
grp9
Line 43: Line 43:
    
 ====== News ====== ====== News ======
-  * Bring your own laptops! The number of computers available will be limited, so using your own laptops will help. +  * **Presentations at 14.00! 5 minute presentation + 5 minute demo (max). Install your software on your N900 device and upload your slides to your wiki page.**
-  Bring a sleeping bag if you want to sleep at codecamp. +
-  * Some snacks will be available but if you want to eat more - bring your own. +
-  Showers will be available at all times (and hopefully sauna at some point) so bring a towel.+
    
    
Line 62: Line 59:
 | [[.:grp1:start|grp1]]  |Team Null Pointer Exception |Mikko Kaistinen |Oskar Sonninen |Anssi Salo | | | [[.:grp1:start|grp1]]  |Team Null Pointer Exception |Mikko Kaistinen |Oskar Sonninen |Anssi Salo | |
 | [[.:grp2:start|grp2]]  |Alarm Zones  |Fedotova Anastasia |Bukharin Artem |Selezneva Olga |Sotnikova Margarita | | [[.:grp2:start|grp2]]  |Alarm Zones  |Fedotova Anastasia |Bukharin Artem |Selezneva Olga |Sotnikova Margarita |
-| [[.:grp3:start|grp3]]  Ageometer |Ananta Bhadra Lamichhane | Nana Assyne | Pankaj Jaiswal | | +| [[.:grp3:start|grp3]]  | Ageometer |Ananta Bhadra Lamichhane | Nana Assyne | Pankaj Jaiswal | | 
-| [[.:grp4:start|grp4]]  |fatemeh ahmadi zeleti |bandana karki |Tuomas Kuitunen | |+| [[.:grp4:start|grp4]] INFO-PIC |fatemeh ahmadi zeleti |bandana karki |Tuomas Kuitunen | |
 | [[.:grp5:start|grp5]]  | Machine Explorer |Andrey Khitryy |Victor Pecherskiy |Anastasia Kotko |Alena Shishkova | | [[.:grp5:start|grp5]]  | Machine Explorer |Andrey Khitryy |Victor Pecherskiy |Anastasia Kotko |Alena Shishkova |
-| [[.:grp6:start|grp6]]  |Radim Svoboda |Liao Ding |Aiguokhian Efosa | |+| [[.:grp6:start|grp6]] Shake it |Radim Svoboda |Liao Ding |Aiguokhian Efosa | |
 | [[.:grp7:start|grp7]]  | CMS |Evgeni Kovalev |Alexey Denissov |Pavel Osipov | | | [[.:grp7:start|grp7]]  | CMS |Evgeni Kovalev |Alexey Denissov |Pavel Osipov | |
 | [[.:grp8:start|grp8]]  | MOCOP |Fawad Ahmad |Zahir ul Din Babur |Sita Pun | | | [[.:grp8:start|grp8]]  | MOCOP |Fawad Ahmad |Zahir ul Din Babur |Sita Pun | |
-| [[.:grp9:start|grp9]]  |Barun Khanal | Nina Korjus |Natalia Tetervova  |Tatiana Belyaeva |+| [[.:grp9:start|grp9]] Warehouse Management |Barun Khanal | Nina Korjus |Natalia Tetervova  |Tatiana Belyaeva |
 | [[.:grp10:start|grp10]] | |Ksenia Dobretsova |Nadezda Prokopovich | Mikhail Elkin | | | [[.:grp10:start|grp10]] | |Ksenia Dobretsova |Nadezda Prokopovich | Mikhail Elkin | |
 | [[.:grp11:start|grp11]] |QtConstruction  |Marko Suhonen |Jukka-Pekka Stranden | | | | [[.:grp11:start|grp11]] |QtConstruction  |Marko Suhonen |Jukka-Pekka Stranden | | |
-| [[.:grp12:start|grp12]] |MaemoMonitor |Marko Ihonen |Antti Knutas |Petri Heinilä |Harri Hämäläinen |+| [[.:grp12:start|grp12]] |DrawingViewer |Marko Ihonen |Antti Knutas |Harri Hämäläinen |
 | [[.:grp14:start|grp14]] |  | | | | | | [[.:grp14:start|grp14]] |  | | | | |
 | [[.:grp15:start|grp15]] |  | | | | | | [[.:grp15:start|grp15]] |  | | | | |
  
 +====== Questions and answers ======
 +Problem - can't run application on device, says libhildonmm not found.
 +  *   Solution install libhildonmm on device. Connect to it with ssh (ssh root@192.168.1.XXX), do ''apt-get update'' and ''apt-get install libhildonmm''
 +
 +Problem - gstreamer header files not found.
 +  * Solution:(see this link) http://talk.maemo.org/archive/index.php/t-42943.html last post. 
 +  * Heres the sample solution for projects done in **c** (For other doing with c++ replace CFLAGS with CXXFLAGS )
 +  * Step 1: Include this below entry to the **configure.ac** file inside your project in ESbox
 +
 +        
 +        PKG_CHECK_MODULES(GSTREAMER, gstreamer-0.10 >= 0.10 gstreamer-interfaces-0.10 >= 0.10)
 +        AC_SUBST(GSTREAMER_CFLAGS)
 +        AC_SUBST(GSTREAMER_LIBS)
 +
 +
 +
 +  * Step 2: Edit the **Makefile.am** to add the GSTREAMER_LIBS and GSTREAMER_CFLAGS correctly
 +
 +        # LDADD
 +        yourprojectname_LDADD = \
 +        $(GSTREAMER_LIBS) $(other_LIBS.....)
 +        
 +        
 +        
 +        # Includes
 +        INCLUDES = $(GSTREAMER_CFLAGS) $(other_CFLAGS.....)
 +
 +====== Returning the assignment ======
 +  * Returning the assignment happens through wiki
 +  * Document your work at your group's wiki-page. Explain the idea, how did you implement it. Also upload the source codes (all the project files) as a zip-file and debian package, which can be installed on Nokia N900 device.
 +  * Do this before the presentation!
 +//