A Generic and Cross-Platform Sensor Framework for Locon

Total Page:16

File Type:pdf, Size:1020Kb

A Generic and Cross-Platform Sensor Framework for Locon UBICOMM 2010 : The Fourth International Conference on Mobile Ubiquitous Computing, Systems, Services and Technologies GeCSen – A Generic and Cross-Platform Sensor Framework for LocON Mitch De Coster and Steven Mattheussen Martin Klepal Maarten Weyn and Glenn Ergeerts Dept. of Applied Engineering Centre for Adaptive Wireless Systems Dept. of Applied Engineering Artesis University College Cork Institute of Technology Artesis University College Antwerp, Belgium Cork, Ireland Antwerp, Belgium [email protected] [email protected] [email protected] [email protected] [email protected] Abstract—In this paper, we present a generic and cross- sist of a variety of sensor nodes with a small battery, micro- platform sensor framework for the LocON location and sensor controller and radio transmitter that collects, processes and middleware. This framework is developed using C++/Qt. Sen- communicates sensor data. All sensor nodes work together sor information is rapidly gaining importance in automating processes and ubiquitous computing, and so it is for projects to monitor an environment whereby all collected sensor data like FP7 LocON where the main goal is to integrate embedded reaches a central sink. The sink acts as a link between location systems and embedded wireless communication in or- the sensors and the application. With GeCSen we aim to der to manage and secure large scale environments. Accessing use computers, embedded systems and smartphones. Many sensor information mostly requires platform specific code, but of these devices already have the means of communica- for merging this information and sending it over the internet or displaying it on a device, Qt provides cross-platform libraries. tion and are equipped with various onboard sensors, for Our sensor framework, called GeCSen, also comes in the form instance, most smartphones have a subset of the following: of a library that can load platform specific sensor plugins GSM/UMTS, Wi-Fi, GPS, accelerometers, Bluetooth, etc. and is able to communicate with the LocON middleware. The and can also be extended with various other sensors to suit framework acts as a cross-platform layer which sends the your needs. Using these kinds of devices comes at the cost sensor information to the LocON middleware. This framework enables all kinds of sensors on a wide range of devices to be of considerably higher power requirements, but also gives used by the LocON platform and thereby adds substantial enormous processing power in the node itself. value to the FP7 LocON project. Most applications of sensor usage today are custom devel- Keywords-monitoring, localisation, embedded devices, smart- oped with industrial usage as target, thus they are specifically phone, sensors, locon, cross-platform built for their needs and only work with specific hardware. Some commercial applications, for example for athletes, are I. INTRODUCTION also available, but they are mostly device specific and all use Nowadays, sensor data is widely used for many appli- different approaches of which practically none are generic. cations, for example, monitoring patients, personnel and Notwithstanding, there are already some efforts in making equipment in hospitals, monitoring athletes to optimise generic sensor frameworks, for example the S60 Sensor training methods, etc. To do monitoring we need a selection Framework of Nokia, the Moblin sensor framework and of sensors such as location sensors, temperature sensors, mSense [2]. Unfortunately they are mostly platform specific, accelerometers, heartbeat sensors, etc. and some basic logic and no more than merely an API for sensors, thus there is to parse the sensor data. This data is used to follow someone an urgent need for a generic way to access sensors used for or something and draw conclusions on which certain actions monitoring. can be based, for instance, calling an ambulance and auto- This paper describes a generic and cross-platform sensor matically give GPS coordinates when someone is having a framework, developed in C++/Qt which is easily extendible heart failure. There are different kinds of monitoring but with plugins to support all kinds of sensors on the majority in general we can conclude that there is environmental of platforms and architectures. It thus provides a consistent monitoring to control an area, object monitoring to track method of accessing sensor hardware by adding a cross- a person or object and process monitoring to monitor the platform abstraction layer above the APIs described in the proceedings of a process. All situations require different previous paragraph, so the plugins are a platform specific approaches. We are mostly focused on monitoring moving wrapper around the APIs which can be loaded in the objects. sensor framework. We also send the sensor data to the Currently, monitoring is mainly done by what are called middleware of the FP7 LocON project [3], thus we are wireless sensor networks [1]; these networks typically con- able to use the LocON data collection and data mining Copyright (c) IARIA, 2010 ISBN: 978-1-61208-100-7 21 UBICOMM 2010 : The Fourth International Conference on Mobile Ubiquitous Computing, Systems, Services and Technologies abilities, together with its localisation fusion engine. Using comprehensive mobile application framework to support the LocON platform gives us the opportunity to thrive with interoperability and mobility of mobile application devel- the success of the FP7 LocON project, but GeCSen itself opment and operation. Choi, Yang and Jeong [8] suggest also provides substantial value to LocON as it makes it very an application framework for writing cross-platform mobile easy to enable all kinds of sensors on various devices for applications in Java. PhoneGap [9] is a project that provides the LocON platform. We provide the framework itself as a a framework in which you can develop programs using library which can be used statically or dynamically in a host simple HTML, CSS and JavaScript. It supports iPhone, application. The host is able to control GeCSen and use the Android and Blackberry. MoSync [10] , another project, collected sensor information to, for example display it in a provides a codebase with which you can program cross- GUI. platform in C/C++ for Java ME, Symbian S60, Windows The remainder of the paper is organized as follows. In Mobile and Moblin and they are working on Android, Section 2, we discuss cross-platform aspect of GeCSen and iPhone and Maemo. Unfortunately these methods are still why it is important. The architecture of the framework is de- too restricted for us to use and don’t allow us to program scribed in Section 3. Section 4 goes deeper into the features for desktops and laptops, as well as mobile devices. of GeCSen. In Section 5 we discuss the test cases used to We have chosen C++/Qt, because although Java is sup- demonstrate the usefulness of the framework, followed by ported by more smartphones than C++/Qt, most smartphone a comparison in Section 6 which shows the advantage of manufacturers have their own restricted APIs. By using using GeCSen. Future work is discussed in Section 7 and C++/Qt a significant part of the smartphone market will still finally, section 8 concludes the paper. be supported. In addition, Qt is fully open-source; thereby it has a large developer community that thrives to port Qt II. CROSS-PLATFORM to every possible platform. It is also gaining more and GeCSen has a broad target group, thus it needs to be able more attention since Intel and Nokia announced that they to run on as much platforms as possible. It is not a trivial task are strongly working together to make Qt the default in to develop a truly cross-platform application, because every cross-platform development. GeCSen is tested and works platform uses its own libraries and has its own platform on various x86/x64 and ARM architectures in combination definitions. Writing cross-platform applications, basically with the following platforms: Windows, Windows Mobile, means having to choose between two major programming Windows CE, Android and various Linux distributions, languages, C++/Qt and Java. Java is a platform independent including Ubuntu and a number of OpenEmbedded variants. language which uses a virtual machine to run Java programs. Qt, on the other hand, is a toolkit written in C++ that uses III. ARCHITECTURE the same APIs for different platforms. Choosing one over the The GeCSen architecture, which is shown in Figure 1, other essentially means choosing a subset of platforms that shows a generic way to enable sensors on a device to you want to support. The main advantage of C++ over Java communicate with the LocON platform. Previously for every is a more efficient use of processor cycles and memory and different type of device which had to be connected with it allows us to program closer to the hardware[4],[5]. The LocON, or for adding an extra sensor to the LocON client main disadvantage of C++ is that you have to cross-compile application, it had to be partially, if not completely rewritten. for each platform while with Java you do not. Using this sensor framework the same code can be reused, Applications that use GeCSen are mainly focused on one only has to compile it for the specific device and develop mobile and embedded platforms. The market for embedded plugins to use the sensors. As a result, it becomes very easy devices is relatively stable; the two mostly used operating to add extra sensor devices to the LocON platform. The systems are Windows CE and various embedded Linux plugins form a hardware and platform specific layer between distributions. The mobile market, on the other hand, is the cross-platform framework and the sensors, thus they are constantly fluctuating; software platforms come and go. As responsible for managing the sensors and sending the sensor Canalys [6] concludes the most used operating systems data to the sensor framework in a uniform way.
Recommended publications
  • Mobile Linux Mojo the XYZ of Mobile Tlas PDQ!
    Mobile Linux Mojo The XYZ of Mobile TLAs PDQ! Bill Weinberg January 29, 2009 Copyright © 2009 Bill Weinberg, LinuxPundit,com Alphabet Soup . Too many TLAs – Non-profits – Commercial Entities – Tool Kits – Standards . ORG Typology – Standards Bodies – Implementation Consortia – Hybrids MIPS and Open Source Copyright © 2008 Bill Weinberg, LinuxPundit,com Page: 2 The Big Four . Ahem, Now Three . OHA - Open Handset Alliance – Founded by Google, together with Sprint, TIM, Motorola, et al. – Performs/support development of Android platform . LiMo Foundation – Orig. Motorola, NEC, NTT, Panasonic, Samsung, Vodaphone – Goal of created shared, open middleware mobile OS . LiPS - Linux Phone Standards Forum – Founded by France Telecom/Orange, ACCESS et al. – Worked to create standards for Linux-based telephony m/w – Merged with LiMo Foundation in June 2008 . Moblin - Mobile Linux – Founded by Intel, (initially) targeting Intel Atom CPUs – Platform / distribution to support MIDs, Nettops, UMPC MIPS and Open Source Copyright © 2008 Bill Weinberg, LinuxPundit,com Page: 3 LiMo and Android . Android is a complete mobile stack LiMo is a platform for enabling that includes applications applications and services Android, as Free Software, should LiMo membership represents appeal to Tier II/III OEMs and Tier I OEMs, ISVs and operators ODMs, who lack resources LiMo aims to leave Android strives to be “room for differentiation” a stylish phone stack LiMo presents Linux-native APIs Android is based on Dalvik, a Java work-alike The LiMo SDK has/will have compliance test suites OHA has a “non Fragmentation” pledge MIPS and Open Source Copyright © 2008 Bill Weinberg, LinuxPundit,com Page: 4 And a whole lot more .
    [Show full text]
  • Linux Foundation to Host Meego Workgroup
    Linux Foundation To Host MeeGo Workgroup New Open Source Software Platform Backed by Intel and Nokia will Power the Next Generation of Computing Devices SAN FRANCISCO, February 15, 2010 – The Linux Foundation, the nonprofit organization dedicated to accelerating the growth of Linux, today announced it will host the MeeGo project, the open source software platform for the next generation of computing devices. MeeGo combines Intel’s Moblin™ and Nokia’s Maemo projects into one Linux-based platform. MeeGo, announced today in a joint release by Intel and Nokia, will be deployed across many computing device types - including pocketable mobile computers, netbooks, tablets, mediaphones, connected TVs and in-vehicle infotainment systems, and brings together the leaders in computing and mobile communications as the project’s backers. MeeGo is designed for cross-device, cross-architecture computing and is built from the ground up for a new class of powerful computing devices. The workgroup will be hosted by the Linux Foundation as a fully open source project, encouraging community contributions in line with the best practices of the open source development model. The Linux Foundation expects MeeGo to be adopted widely by device manufacturers, network operators, software vendors and developers across multiple device types and for many organizations and developers to participate in the workgroup. “With MeeGo, you have the world’s leader in computing – Intel – uniting with the world’s leader in communications – Nokia – in a true open source project hosted at the Linux Foundation,” said Jim Zemlin, executive director at the Linux Foundation. “MeeGo has been built from the ground up for rich, mobile devices and will deliver choice to consumers without lock-in.
    [Show full text]
  • MEEGO–SOVELLUKSEN SUUNNITTELU JA OHJEL- MOINTI CASE: EKG-Pitkäaikaisrekisteröinnin Päiväkirja
    OPINNÄYTETYÖ - AMMATTIKORKEAKOULUTUTKINTO LUONNONTIETEIDEN ALA MEEGO–SOVELLUKSEN SUUNNITTELU JA OHJEL- MOINTI CASE: EKG-pitkäaikaisrekisteröinnin päiväkirja TEKIJÄ/T: Tomi Häkkinen SAVONIA-AMMATTIKORKEAKOULU OPINNÄYTETYÖ Tiivistelmä Koulutusala Luonnontieteiden ala Koulutusohjelma Tietojenkäsittelyn koulutusohjelma Työn tekijä(t) Tomi Häkkinen Työn nimi Meego-sovelluksen suunnittelu ja ohjelmointi. CASE: EKG-pitkäaikaisrekisteröinnin päiväkirja Päiväys 10.10.2013 Sivumäärä/Liitteet 43 Ohjaaja(t) Marja-Riitta Kivi Toimeksiantaja/Yhteistyökumppani(t) Tiivistelmä Opinnäytetyön tavoitteena oli suunnitella ja luoda matkapuhelimeen päiväkirjasovellus EKG- pitkäaikaisrekisteröinnin avuksi. Työssä käytettiin Linux-käyttöjärjestelmään pohjautuvaa matkapuhelinta. Opinnäytetyössä kuvataan ohjelmistokehityksen eri vaiheita ja valintoja sekä käytettyjä työvälineitä Meego- käyttöjärjestelmälle ohjelmoitaessa. Työssä kuvataan myös käyttöliittymän rakentamista QML-ohjelmointikielellä. Lisäksi pyritään ottamaan huomioon käytettävyys sovelluksen käyttötarkoitusta ajatellen sekä matkapuhelimeen liittyvät erityispiirteet ohjelmaa suunniteltaessa ja ohjelmoitaessa. Sovellus ohjelmoitiin Meego-käyttöjärjestelmälle käyttäen Qt Quick -kehitysympäristöä. Ohjelmointikielinä käytettiin QML- ja Javascript-ohjelmointikieliä. Työtä voidaan hyödyntää erityisesti QML-kielisessä ohjelmistoprojekteissa, mutta myös yleisesti mobiilisovellusten suunnittelussa. Avainsanat päiväkirjasovellus, EKG-pitkäaikaisrekisteröinti, Meego, QML SAVONIA UNIVERSITY OF APPLIED SCIENCES
    [Show full text]
  • A GUI Application for Srcml Brian Kovacs the University of Akron, [email protected]
    The University of Akron IdeaExchange@UAkron The Dr. Gary B. and Pamela S. Williams Honors Honors Research Projects College Summer 2016 srcMX: A GUI Application for srcML Brian Kovacs The University of Akron, [email protected] Please take a moment to share how this work helps you through this survey. Your feedback will be important as we plan further development of our repository. Follow this and additional works at: http://ideaexchange.uakron.edu/honors_research_projects Part of the Graphics and Human Computer Interfaces Commons, Programming Languages and Compilers Commons, and the Software Engineering Commons Recommended Citation Kovacs, Brian, "srcMX: A GUI Application for srcML" (2016). Honors Research Projects. 395. http://ideaexchange.uakron.edu/honors_research_projects/395 This Honors Research Project is brought to you for free and open access by The Dr. Gary B. and Pamela S. Williams Honors College at IdeaExchange@UAkron, the institutional repository of The nivU ersity of Akron in Akron, Ohio, USA. It has been accepted for inclusion in Honors Research Projects by an authorized administrator of IdeaExchange@UAkron. For more information, please contact [email protected], [email protected]. srcMX: A GUI Application for srcML Brian Kovacs Department of Computer Science Honors Research Project Submitted to The Honors College Approved: Accepted: ______________________ Date _______ __________________ Date _________ Honors Project Sponsor (signed) Department Head (signed) _________________________________ _________________________________
    [Show full text]
  • Mer: Core OS Mobile & Devices
    Mer: Core OS mobile & devices Qt Developer Days - Silicon Valley 2012 Carl Symons Introduction Plasma Active chooses Mer Not just another Linux distribution Focus - device providers Where's Mer? SDKs - apps & platform Get Mer Resources Carl Symons Large company Mktg/BusDev Start-ups } Slightly geeky Grassroots LinuxFest organizer KDE News editor/promo KDE Plasma Active Mer upstream and downstream First LinuxCon September 2009 Portland Moblin is a hot topic Moblin 2.1 for phones introduced MeeGo Announced February 201 0 Moblin & Maemo merger Support for Intel Atom Desktop Summit August 11 , 2011 Berlin; Free Desktop meeting Developer orientation; ExoPCs MeeGo AppStore A real Linux OS LinuxCon - Vancouver August 1 8, 2011 Intel AppUp Developer orientation; ExoPCs MeeGo AppStore show real Linux OS; possibilities Intel AppUp Elements September 28, 2011 National developer conference Tizen announced (led by Intel and Samsung) MeeGo and Qt abandoned HTML5/CSS3 Maemo Reconstructed October 3, 2011 Mer announced The spirit of MeeGo lives on Plasma Active chooses Mer October 5, 2011 No viable alternative Lightweight Mer talent and community Performant Boot time - more than a minute to about 1 5 seconds on Atom tablet Not just another Linux MeeGo - large company dominated; closed governance Mer - Core OS only Packages Focus - Device Providers Complete world class platform for building commercial products Modern, clean Linux Easy to try; easy to port Systems, structures, processes, code to serve device providers Where's Mer? X86, ARM, MIPS NemoMobile
    [Show full text]
  • Porting Tizen to Popular Reference Phone
    Porting Tizen to Popular Reference Phone Pengcheng Zou SVP of Thundersoft the TOP Project Tizen Open Porting The Most Open and Powerful Mobile OS on the Most Popular Reference Design 2 10 FREE Tizen QRD Devices, Just Ask or Contribute Ask Questions Contribute to The TOP Project 3 A Little Bit of History • 2005: Maemo (Nokia) • 2006: Midinux (RedFlag) • 2007: Moblin (Intel) • 2008: Thundersoft Founded, the leading Mobile OS Provider • 2010: MeeGo (Nokia, Intel, other major hardware & software companies) • 2010: Bada (Samsung : for less Android dependance) • 2011: MeeGo abandoned by Nokia (for Windows Phone) • 2011: MeeGo abandoned by Intel, and then by its other supporters • 2011: LiMo 4 (LiMo Foundation - Samsung collaboration with the EFL project • (Carsten Haitzler = Rasterman) • 2011: Intel joins LiMo, which is renamed Tizen • 2012: LiMo Foundation is renamed Tizen Association • 2012: Samsung has aim to merge Bada with Tizen 2007 2008 2009 2010 2011 2012 2013 2014 MID Midinux Team, 1997 @ Beijing IDF 4 What’s QRD? “Qualcomm Reference Design (QRD) combines technology innovation, optimized design, hardware/software ecosystem, factory/development tools and altogether, and provides the turn- key solution for device vendor to release product in a more cost effective, broader and faster way.” Nokia X Xiaomi Coolpad Lenovo Note 5951 Yoga Tablet 10 TCL Lenovo Hisense Little Cilly M812 A380t U958 LA3 5 Why Tizen on QRD? • The pleasure of hacking • We have ported Ubuntu and FirefoxOS on QRD • The most open and powerful operating system on the
    [Show full text]
  • The Meego Multimedia Stack
    The MeeGo Multimedia Stack Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe The MeeGo Multimedia Stack MeeGo Intro Architecture Development GStreamer Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe Quick MeeGo Intro ● MeeGo = Moblin + Maemo ● Linux distribution for CE devices ● Netbook, Phone (Handset), Connected TV, In-Vehicle ● http://meego.com ● Linux Foundation hosted project Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe Architecture http://meego.com/developers/meego-architecture Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe Architecture - Multimedia ● Kernel ● V4l2, Alsa ● Middleware ● GStreamer, Pulseaudio, GUPnP ● API ● Qt, Qt Mobility Multimedia, Qt GStreamer Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe Development ● Hardware Adaptation ● Core OS Platform ● Applications Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe Development – HW Adaptation ● Linux Kernel ● Drivers ● user space libraries (alsa, v4l2) ● Middleware plugins ● GStreamer plugins (Codecs, Camera, Video) Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe Development - Platform ● libraries from the Linux eco system ● GStreamer, GUPnP, PulseAudio, Xiph codecs, … Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe Development - Applications ● QT interfaces are the official one ● Lower level interfaces might have less stability guarantees Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe GStreamer – Use Cases ● Media Playback ● Voice and Video Call ● Camera Still and Video Capture ● Video Editing ● Media Transcoding ● Metadata Indexing and Thumbnailing Dr. Stefan Kost – Nokia - The MeeGo Multimedia Stack - CELF Embedded Linux Conference Europe GStreamer - Framework Dr.
    [Show full text]
  • [WEEKLY WIRELESS REPORT] Week Ending September 30, 2011
    [WEEKLY WIRELESS REPORT] Week ending September 30, 2011 This Week’s Stories key rhetorical question: "Why not just evolve MeeGo?" The answer, he said, is that "the future belongs to HTML5-based applications, outside of a AT&T Mobility Suffers Huge relatively small percentage of apps ," and Intel Network Outage in Los Angeles believes its investment should shift in that direction. September 26, 2011 But, he added, "shifting to HTML5 doesn't just mean slapping a web runtime on an existing Linux, even AT&T Mobility subscribers in Los Angeles can now one aimed at mobile, as MeeGo has been." text and make calls again on their mobile devices after technicians repaired a widespread network outage that affected millions of people. Sousou said that emphasizing HTML5 means APIs need to evolve with platform technology and by market segment, which a new platform could more AT&T spokesperson Meredith Red said late yesterday easily provide. that a hardware failure led to network issues with about 900 cellular towers across LA. Tizen will reside within the Linux Foundation, be governed by a Technical Steering Group, will be The service problems began at about 3.00 P.M. developed openly, and will support tablets, notebooks, Saturday and contributed to an evening of missed, handsets, smart TVs, and in-vehicle infotainment dropped and failed calls. Service was fully restored systems. early Sunday morning, local time. On the new Tizen.org website, a welcoming Red says it's unclear how many wireless subscribers statement said that Tizen APIs will cover various were affected, but conservative estimates are in the platform capabilities, including messaging, multimedia, millions.
    [Show full text]
  • Debian \ Amber \ Arco-Debian \ Arc-Live \ Aslinux \ Beatrix
    Debian \ Amber \ Arco-Debian \ Arc-Live \ ASLinux \ BeatriX \ BlackRhino \ BlankON \ Bluewall \ BOSS \ Canaima \ Clonezilla Live \ Conducit \ Corel \ Xandros \ DeadCD \ Olive \ DeMuDi \ \ 64Studio (64 Studio) \ DoudouLinux \ DRBL \ Elive \ Epidemic \ Estrella Roja \ Euronode \ GALPon MiniNo \ Gibraltar \ GNUGuitarINUX \ gnuLiNex \ \ Lihuen \ grml \ Guadalinex \ Impi \ Inquisitor \ Linux Mint Debian \ LliureX \ K-DEMar \ kademar \ Knoppix \ \ B2D \ \ Bioknoppix \ \ Damn Small Linux \ \ \ Hikarunix \ \ \ DSL-N \ \ \ Damn Vulnerable Linux \ \ Danix \ \ Feather \ \ INSERT \ \ Joatha \ \ Kaella \ \ Kanotix \ \ \ Auditor Security Linux \ \ \ Backtrack \ \ \ Parsix \ \ Kurumin \ \ \ Dizinha \ \ \ \ NeoDizinha \ \ \ \ Patinho Faminto \ \ \ Kalango \ \ \ Poseidon \ \ MAX \ \ Medialinux \ \ Mediainlinux \ \ ArtistX \ \ Morphix \ \ \ Aquamorph \ \ \ Dreamlinux \ \ \ Hiwix \ \ \ Hiweed \ \ \ \ Deepin \ \ \ ZoneCD \ \ Musix \ \ ParallelKnoppix \ \ Quantian \ \ Shabdix \ \ Symphony OS \ \ Whoppix \ \ WHAX \ LEAF \ Libranet \ Librassoc \ Lindows \ Linspire \ \ Freespire \ Liquid Lemur \ Matriux \ MEPIS \ SimplyMEPIS \ \ antiX \ \ \ Swift \ Metamorphose \ miniwoody \ Bonzai \ MoLinux \ \ Tirwal \ NepaLinux \ Nova \ Omoikane (Arma) \ OpenMediaVault \ OS2005 \ Maemo \ Meego Harmattan \ PelicanHPC \ Progeny \ Progress \ Proxmox \ PureOS \ Red Ribbon \ Resulinux \ Rxart \ SalineOS \ Semplice \ sidux \ aptosid \ \ siduction \ Skolelinux \ Snowlinux \ srvRX live \ Storm \ Tails \ ThinClientOS \ Trisquel \ Tuquito \ Ubuntu \ \ A/V \ \ AV \ \ Airinux \ \ Arabian
    [Show full text]
  • Nokia, Intel Join Forces in Mobile Software Battle 15 February 2010
    Nokia, Intel join forces in mobile software battle 15 February 2010 US chip maker Intel and Finnish mobile phone giant Nokia announced Monday the launch of a joint software platform that will power a wide range of devices from smartphones to pocket computers. The two groups will merge their systems, Nokia's Maemo and Intel's Moblin, to form MeeGo, an open software platform that will be available to all manufacturers and developers, the companies said at the Mobile World Congress in Barcelona, Spain. The Linux-based platform is scheduled to be launched in the second quarter of this year and the first devices later this year. The market for mobile operating systems was shaken by the emergence of Internet giant Google's Android platform, which is open and thus can be used for free by all manufacturers. Nokia already owns an operating system, Symbian, which leads the market but has lost ground to Android and Apple's iPhone. The Finnish company said earlier this month it would make Symbian an open platform. "MeeGo will drive an even wider range of Internet computing and communication experiences for consumers, on new types of mobile devices," said Nokia chief executive Olli-Pekka Kallasvuo. (c) 2010 AFP APA citation: Nokia, Intel join forces in mobile software battle (2010, February 15) retrieved 29 September 2021 from https://phys.org/news/2010-02-nokia-intel-mobile-software.html This document is subject to copyright. Apart from any fair dealing for the purpose of private study or research, no part may be reproduced without the written permission.
    [Show full text]
  • Master Thesis Innovation Dynamics in Open Source Software
    Master thesis Innovation dynamics in open source software Author: Name: Remco Bloemen Student number: 0109150 Email: [email protected] Telephone: +316 11 88 66 71 Supervisors and advisors: Name: prof. dr. Stefan Kuhlmann Email: [email protected] Telephone: +31 53 489 3353 Office: Ravelijn RA 4410 (STEPS) Name: dr. Chintan Amrit Email: [email protected] Telephone: +31 53 489 4064 Office: Ravelijn RA 3410 (IEBIS) Name: dr. Gonzalo Ord´o~nez{Matamoros Email: [email protected] Telephone: +31 53 489 3348 Office: Ravelijn RA 4333 (STEPS) 1 Abstract Open source software development is a major driver of software innovation, yet it has thus far received little attention from innovation research. One of the reasons is that conventional methods such as survey based studies or patent co-citation analysis do not work in the open source communities. In this thesis it will be shown that open source development is very accessible to study, due to its open nature, but it requires special tools. In particular, this thesis introduces the method of dependency graph analysis to study open source software devel- opment on the grandest scale. A proof of concept application of this method is done and has delivered many significant and interesting results. Contents 1 Open source software 6 1.1 The open source licenses . 8 1.2 Commercial involvement in open source . 9 1.3 Opens source development . 10 1.4 The intellectual property debates . 12 1.4.1 The software patent debate . 13 1.4.2 The open source blind spot . 15 1.5 Litterature search on network analysis in software development .
    [Show full text]
  • Business Informatics 2 (PWIN) SS 2021 Lecture 04
    Lecture 04 Business Informatics 2 (PWIN) SS 2021 Information Systems III Mobile Information Systems Prof. Dr. Kai Rannenberg Chair of Mobile Business & Multilateral Security Johann Wolfgang Goethe University Frankfurt a. M. Special of the day . “Heads in the Clouds: Measuring the Implications of Universities Migrating to Public Clouds”, v2 (2021-04- 20) . By Tobias Fiebig, Seda Gürses, Carlos H. Gañán, Erna Kotkamp, Fernando Kuipers, Martina Lindorfer, Menghua Prisse, Taritha Sari (TU Delft, TU Wien) . https://arxiv.org/abs/2104.09462 . Typical IS article in general topic and structure . Topic: analysis of information systems of organisations and strategic considerations (in this case universities) . Structure: Introduction, Background, Methodology overview (focus, data set), Data analysis of case(s), Discussion, Limitations, Related work, Conclusion(s), Acknowledgements 2 Agenda . What is Mobility? . Mobile Infrastructure and Ecosystem . Mobile Information Systems . Conclusion on Challenges / Benefits of Mobile IS 3 Mobility What is mobility? Lat. mobilitas: (1) Flexibility, velocity, motion; and as “mobilitas animi”: (mental) fitness (2) But also (and quite ambivalent to (1)) changeability, inconstancy, unstableness [SkuStowPets1998] 4 Mobility . Social implications Mobility not just “humans’ independence from geographical constraints” . Spatial mobility . Temporal mobility . Contextual mobility [KakihaSorens2001] 5 Agenda . What is Mobility? . Mobile Infrastructure & Ecosystem . Mobile Voice & Data Communication Services . Mobile Devices . Smartcards and Subscriber Identity Module (SIM) . Mobile Operating Systems . Mobile Web Apps vs. Mobile Apps . App Markets . Mobile Infrastructure and Ecosystem . Conclusion on Challenges / Benefits of Mobile IS 6 Mobile Voice & Data Communication Services . Mobile device . Base station/mobile station/cell . Connection to the Internet User terminal 7 Mobile Voice & Data Communication Services Fundamental mobile communication services .
    [Show full text]