RIOT OS Paves the Way for Implementation of High-Performance MAC Protocols Kévin Roussel, Ye-Qiong Song, Olivier Zendra

Total Page:16

File Type:pdf, Size:1020Kb

RIOT OS Paves the Way for Implementation of High-Performance MAC Protocols Kévin Roussel, Ye-Qiong Song, Olivier Zendra RIOT OS Paves the Way for Implementation of High-Performance MAC Protocols Kévin Roussel, Ye-Qiong Song, Olivier Zendra To cite this version: Kévin Roussel, Ye-Qiong Song, Olivier Zendra. RIOT OS Paves the Way for Implementation of High- Performance MAC Protocols. SENSORNETS 2015, INSTICC; ESEO Angers, Feb 2015, Angers, France. pp.5-14, 10.5220/0005237600050014. hal-01141496 HAL Id: hal-01141496 https://hal.archives-ouvertes.fr/hal-01141496 Submitted on 13 Apr 2015 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. RIOT OS Paves the Way for Implementation of High-Performance MAC Protocols K´evinRoussel, Ye-Qiong Song and Olivier Zendra LORIA/INRIA Nancy Grand-Est, Universit´ede Lorraine, 615, rue du Jardin Botanique, 54600 Villers-L`es-Nancy,France fKevin.Roussel,Ye-Qiong.Song,[email protected] Keywords: Real-Time, Wireless Sensor Networks, Internet of Things, MAC protocols, RIOT OS Abstract: Implementing new, high-performance MAC protocols requires real-time features, to be able to synchronize correctly between different unrelated devices. Such features are highly desirable for operating wireless sensor networks (WSN) that are designed to be part of the Internet of Things (IoT). Unfortunately, the operating systems commonly used in this domain cannot provide such features. On the other hand, \bare-metal" development sacrifices portability, as well as the mul- titasking abilities needed to develop the rich applications that are useful in the domain of the Internet of Things. We describe in this paper how we helped solving these issues by contributing to the development of a port of RIOT OS on the MSP430 microcontroller, an architecture widely used in IoT-enabled motes. RIOT OS offers rich and advanced real-time features, especially the simultaneous use of as many hardware timers as the underlying platform (microcontroller) can offer. We then demon- strate the effectiveness of these features by presenting a new implementation, on RIOT OS, of S-CoSenS, an efficient MAC protocol that uses very low processing power and energy. 1 INTRODUCTION IoT motes are usually very compact devices: they are usually built around a central integrated When programming the small devices that chip that contains the main processing unit and constitutes the nodes of the Internet of Things several basic peripherals (such as timers, A/D (IoT), one has to adapt to the limitations of these and D/A converters, I/O controllers. ) called devices. microcontroller units or MCUs. Apart from the MCU, a mote generally only contains some Apart from their very limited processing \physical-world" sensors and a radio transceiver power (especially compared to the current per- for networking. The main radio communication sonal computers, and even mobile devices like protocol currently used in the IoT field is IEEE smartphones and tablets), the main specificity of 802.15.4. Some MCUs do integrate a 802.15.4 the devices is that they are operated on small transceiver on-chip. batteries (e.g.: AAA or button cells). Thus, one of the main challenges with these Among the various components that consti- motes is the need to reduce as much as possible tute a mote, the most power-consuming block is their energy consumption. We want their bat- the radio transceiver. Consequently, to reduce teries to last as long as possible, for economical the power consumption of IoT motes, a first key but also practical reasons: it may be difficult— point is to use the radio transceiver only when even almost impossible|to change the batteries needed, keeping it powered-off as much as possi- of some of these motes, because of their locations ble. The software element responsible to control (e.g.: on top of buildings, under roads, etc.) the radio transceiver in an adequate manner is the MAC / RDC (Media Access Control & Radio 2.1 TinyOS Duty Cycle) layer of the network stack. A efficient power-saving strategy for IoT The first widely used system in this domain was motes thus relies on finding the better trade-off TinyOS (Levis et al., 2005). It is an open-source between minimizing the radio duty cycle while OS, whose first stable release (1.0) was published keeping networking efficiency at the highest pos- in september 2002. It is very lightweight, and as sible level. This is achieved by developing new, such well adapted to limited devices like WSN \intelligent" MAC / RDC protocols. motes. It has brought many advances in this do- To implement new, high-performance MAC / main, like the ability to use Internet Protocol (IP) RDC protocols, one needs to be able to react and routing (RPL) on 802.15.4 networks, includ- to events with good reactivity (lowest latency ing the latest IPv6 version, and to simulate net- possible) and flexibility. These protocols rely works of TinyOS motes via TOSSIM (Levis et al., on precise timing to ensure efficient synchro- 2003). nization between the different motes and other Its main drawback is that one needs to learn radio-networked devices of a Personal Area Net- a specific language|named nesC|to be able to work (PAN), thus allowing to turn on the radio efficiently work within it. This language is quite transceivers only when needed. different from standard C and other common im- At the system level, being able to follow such perative programming languages, and as such can accurate timings means having very efficient in- be difficult to master. terruption management, and the extensive use of The presence of that specific language is no hardware timers, that are the most precise timing coincidence: TinyOS is built on its own specific source available. paradigms: it has an unique stack, from which The second most power-consuming element the different components of the OS are called as in a mote, after the radio transceiver, is the statically linked callbacks. This makes the pro- MCU itself: every current MCU offers \low- gramming of applications complex, especially for power modes", that consist in disabling the var- decomposing into various \tasks". The multitask- ious hardware blocks, beginning with the CPU ing part is also quite limited: tasks are run in a core. The main way to minimize energy consump- fixed, queue-like order. Finally, TinyOS requires tion with a MCU is thus to disable its features as a custom GNU-based toolchain to be built. much as possible, only using them when needed: All of these limitations, plus a relatively slow that effectively means putting the whole MCU to development pace (last stable version dates back sleep as much as possible. to august 2012) have harmed its adoption, and it is not the mainly used OS of the domain anymore. Like for the radio transceiver, using the MCU efficiently while keeping the system efficient and reactive means optimal use of interruptions, and 2.2 Contiki hardware timers for synchronization. Thus, in both cases, we need to optimally use The current reference OS in the domain of WSN interruptions as well as hardware timers. Be- and IoT is Contiki (Dunkels et al., 2004). It's ing able to use them both efficiently without too also an open-source OS, which was first released much hassle implies the use of a specialized op- in 2002. It is also at the origin of many assets: we erating system (OS), especially to easily benefit can mention, among others, the uIP Embedded from multitasking abilities. That is what we will TCP/IP Stack (Dunkels, 2003), that has been discuss in this paper. extended to uIPv6, the low-power Rime network stack (Dunkels, 2007), or the Cooja advanced net- work simulator (Osterlind¨ et al., 2006). While a bit more resource-demanding than 2 PREVIOUS WORK AND TinyOS, Contiki is also very lightweight and well PROBLEM STATEMENT adapted to motes. Its greatest advantage over TinyOS is that it is based on standard, well- known OS paradigms, and coded in standard C Specialized OSes for the resource-constrained language, which makes it relatively easy to learn devices that constitute wireless sensor networks and program. It offers an event-based kernel, im- have been designed, published, and made avail- plemented using cooperative multithreading, and able for quite a long time. a complete network stack. All of these features and advantages have made Contiki widespread, voked from rtimer, using other parts of Con- making it the reference OS when it comes to tiki's meaning almost certainly crash or un- WSN. predictable behaviour. This restriction prac- Contiki developers also have made advances tically makes it very difficult to write Contiki in the MAC/RDC domain: many of them have extensions (like network stack layer drivers) been implemented as part of the Contiki net- using rtimer. work stack, and a specifically developed, Con- Also note that this cooperative scheduler is tikiMAC, has been published in 2011 (Dunkels, designed to manage a specific kind of tasks: the 2011) and implemented into Contiki as the de- protothreads. This solution allows to manage dif- fault RDC protocol (designed to be used with ferent threads of execution, without needing each standard CSMA/CA as MAC layer). of them to have its own separate stack (Dunkels However, Contiki's extremely compact foot- et al., 2006). The great advantage of this mech- print and high optimization comes at the cost of anism is the ability to use an unique stack, thus some limitations that prevented us from using it greatly reducing the needed amount of RAM for as our software platform.
Recommended publications
  • AMNESIA 33: How TCP/IP Stacks Breed Critical Vulnerabilities in Iot
    AMNESIA:33 | RESEARCH REPORT How TCP/IP Stacks Breed Critical Vulnerabilities in IoT, OT and IT Devices Published by Forescout Research Labs Written by Daniel dos Santos, Stanislav Dashevskyi, Jos Wetzels and Amine Amri RESEARCH REPORT | AMNESIA:33 Contents 1. Executive summary 4 2. About Project Memoria 5 3. AMNESIA:33 – a security analysis of open source TCP/IP stacks 7 3.1. Why focus on open source TCP/IP stacks? 7 3.2. Which open source stacks, exactly? 7 3.3. 33 new findings 9 4. A comparison with similar studies 14 4.1. Which components are typically flawed? 16 4.2. What are the most common vulnerability types? 17 4.3. Common anti-patterns 22 4.4. What about exploitability? 29 4.5. What is the actual danger? 32 5. Estimating the reach of AMNESIA:33 34 5.1. Where you can see AMNESIA:33 – the modern supply chain 34 5.2. The challenge – identifying and patching affected devices 36 5.3. Facing the challenge – estimating numbers 37 5.3.1. How many vendors 39 5.3.2. What device types 39 5.3.3. How many device units 40 6. An attack scenario 41 6.1. Other possible attack scenarios 44 7. Effective IoT risk mitigation 45 8. Conclusion 46 FORESCOUT RESEARCH LABS RESEARCH REPORT | AMNESIA:33 A note on vulnerability disclosure We would like to thank the CERT Coordination Center, the ICS-CERT, the German Federal Office for Information Security (BSI) and the JPCERT Coordination Center for their help in coordinating the disclosure of the AMNESIA:33 vulnerabilities.
    [Show full text]
  • Tinyos Meets Wireless Mesh Networks
    TinyOS Meets Wireless Mesh Networks Muhammad Hamad Alizai, Bernhard Kirchen, Jo´ Agila´ Bitsch Link, Hanno Wirtz, Klaus Wehrle Communication and Distributed Systems, RWTH Aachen University, Germany [email protected] Abstract 2 TinyWifi We present TinyWifi, a nesC code base extending TinyOS The goal of TinyWifi is to enable direct execution of to support Linux powered network nodes. It enables devel- TinyOS applications and protocols on Linux driven network opers to build arbitrary TinyOS applications and protocols nodes with no additional effort. To achieve this, the Tiny- and execute them directly on Linux by compiling for the Wifi platform extends the existing TinyOS core to provide new TinyWifi platform. Using TinyWifi as a TinyOS plat- the exact same hardware independent functionality as any form, we expand the applicability and means of evaluation of other platform (see Figure 1). At the same time, it exploits wireless protocols originally designed for sensornets towards the customary advantages of typical Linux driven network inherently similar Linux driven ad hoc and mesh networks. devices such as large memory, more processing power and higher communication bandwidth. In the following we de- 1 Motivation scribe the architecture of each component of our TinyWifi Implementation. Although different in their applications and resource con- straints, sensornets and Wi-Fi based multihop networks share 2.1 Timers inherent similarities: (1) They operate on the same frequency The TinyOS timing functionality is based on the hardware band, (2) experience highly dynamic and bursty links due to timers present in current microcontrollers. A sensor-node radio interferences and other physical influences resulting in platform provides multiple realtime hardware timers to spe- unreliable routing paths, (3) each node can only communi- cific TinyOS components at the HAL layer - such as alarms, cate with nodes within its radio range forming a mesh topol- counters, and virtualization.
    [Show full text]
  • Shared Sensor Networks Fundamentals, Challenges, Opportunities, Virtualization Techniques, Comparative Analysis, Novel Architecture and Taxonomy
    Journal of Sensor and Actuator Networks Review Shared Sensor Networks Fundamentals, Challenges, Opportunities, Virtualization Techniques, Comparative Analysis, Novel Architecture and Taxonomy Nahla S. Abdel Azeem 1, Ibrahim Tarrad 2, Anar Abdel Hady 3,4, M. I. Youssef 2 and Sherine M. Abd El-kader 3,* 1 Information Technology Center, Electronics Research Institute (ERI), El Tahrir st, El Dokki, Giza 12622, Egypt; [email protected] 2 Electrical Engineering Department, Al-Azhar University, Naser City, Cairo 11651, Egypt; [email protected] (I.T.); [email protected] (M.I.Y.) 3 Computers & Systems Department, Electronics Research Institute (ERI), El Tahrir st, El Dokki, Giza 12622, Egypt; [email protected] 4 Department of Computer Science & Engineering, School of Engineering and Applied Science, Washington University in St. Louis, St. Louis, MO 63130, 1045, USA; [email protected] * Correspondence: [email protected] Received: 19 March 2019; Accepted: 7 May 2019; Published: 15 May 2019 Abstract: The rabid growth of today’s technological world has led us to connecting every electronic device worldwide together, which guides us towards the Internet of Things (IoT). Gathering the produced information based on a very tiny sensing devices under the umbrella of Wireless Sensor Networks (WSNs). The nature of these networks suffers from missing sharing among them in both hardware and software, which causes redundancy and more budget to be used. Thus, the appearance of Shared Sensor Networks (SSNs) provides a real modern revolution in it. Where it targets making a real change in its nature from domain specific networks to concurrent running domain networks. That happens by merging it with the technology of virtualization that enables the sharing feature over different levels of its hardware and software to provide the optimal utilization of the deployed infrastructure with a reduced cost.
    [Show full text]
  • 1921 Tulsa Race Riot Reconnaissance Survey
    1921 Tulsa Race Riot Reconnaissance Survey Final November 2005 National Park Service U.S. Department of the Interior CONTENTS INTRODUCTION 1 Summary Statement 1 Bac.ground and Purpose 1 HISTORIC CONTEXT 5 National Persp4l<live 5 1'k"Y v. f~u,on' World War I: 1896-1917 5 World W~r I and Postw~r ( r.: 1!1t7' EarIV 1920,; 8 Tulsa RaCR Riot 14 IIa<kground 14 TI\oe R~~ Riot 18 AIt. rmath 29 Socilot Political, lind Economic Impa<tsJRamlt;catlon, 32 INVENTORY 39 Survey Arf!a 39 Historic Greenwood Area 39 Anla Oubi" of HiOlorK G_nwood 40 The Tulsa Race Riot Maps 43 Slirvey Area Historic Resources 43 HI STORIC GREENWOOD AREA RESOURCeS 7J EVALUATION Of NATIONAL SIGNIFICANCE 91 Criteria for National Significance 91 Nalional Signifiunce EV;1lu;1tio.n 92 NMiol\ill Sionlflcao<e An.aIYS;s 92 Inl~ri ly E~alualion AnalY'is 95 {"",Iu,ion 98 Potenl l~1 M~na~menl Strategies for Resource Prote<tion 99 PREPARERS AND CONSULTANTS 103 BIBUOGRAPHY 105 APPENDIX A, Inventory of Elltant Cultural Resoun:es Associated with 1921 Tulsa Race Riot That Are Located Outside of Historic Greenwood Area 109 Maps 49 The African American S«tion. 1921 51 TI\oe Seed. of c..taotrophe 53 T.... Riot Erupt! SS ~I,.,t Blood 57 NiOhl Fiohlino 59 rM Inva.ion 01 iliad. TIll ... 61 TM fighl for Standp''''' Hill 63 W.II of fire 65 Arri~.. , of the Statl! Troop< 6 7 Fil'lal FiOlrtino ~nd M~,,;~I I.IIw 69 jii INTRODUCTION Summary Statement n~sed in its history.
    [Show full text]
  • Performance Study of Real-Time Operating Systems for Internet Of
    IET Software Research Article ISSN 1751-8806 Performance study of real-time operating Received on 11th April 2017 Revised 13th December 2017 systems for internet of things devices Accepted on 13th January 2018 E-First on 16th February 2018 doi: 10.1049/iet-sen.2017.0048 www.ietdl.org Rafael Raymundo Belleza1 , Edison Pignaton de Freitas1 1Institute of Informatics, Federal University of Rio Grande do Sul, Av. Bento Gonçalves, 9500, CP 15064, Porto Alegre CEP: 91501-970, Brazil E-mail: [email protected] Abstract: The development of constrained devices for the internet of things (IoT) presents lots of challenges to software developers who build applications on top of these devices. Many applications in this domain have severe non-functional requirements related to timing properties, which are important concerns that have to be handled. By using real-time operating systems (RTOSs), developers have greater productivity, as they provide native support for real-time properties handling. Some of the key points in the software development for IoT in these constrained devices, like task synchronisation and network communications, are already solved by this provided real-time support. However, different RTOSs offer different degrees of support to the different demanded real-time properties. Observing this aspect, this study presents a set of benchmark tests on the selected open source and proprietary RTOSs focused on the IoT. The benchmark results show that there is no clear winner, as each RTOS performs well at least on some criteria, but general conclusions can be drawn on the suitability of each of them according to their performance evaluation in the obtained results.
    [Show full text]
  • Operating in a New Environment
    EMBEDDED DESIGN OPERATING SYSTEMS lthough the concept of the IoT was Ioated around the turn of the Millennium, it is A only recently that the approach has gathered significant momentum. But, because it is a blanket term, IoT is not only being applied to large and small applications alike, it is also being applied in a wide range of end markets. With such a spread, it will come as no surprise to discover that one size does not fit all when it comes to operating systems. At the high end of the market, companies like Intel are vying to provide a complete solution. Alongside its processor technology, Intel can integrate Wind River’s VxWorks operating system and McAfee security software to create a system capable of handling high levels of complexity. But those developing wearable devices, for example, may not want to take advantage of such a system; they may well be looking for an OS that runs in a very small footprint but, nonetheless, offers a range of Operating in a new necessary features while consuming minimal amounts of power. ARM has had its eyes on the sector for some time and, last year, rolled out environment a significant extension to its mbed programme. Previously, mbed was an embedded development community The Internet of Things is posing challenges to OS developers. with ambitions similar to those of Arduino and Raspberry Pi. But mbed How are they responding? By Graham Pitcher. now has a much bigger vision – the IoT. As part of this approach, it is creating mbed OS (see fig 1).
    [Show full text]
  • Low Power Or High Performance? a Tradeoff Whose Time
    Low Power or High Performance? ATradeoffWhoseTimeHasCome(andNearlyGone) JeongGil Ko1,KevinKlues2,ChristianRichter3,WanjaHofer4, Branislav Kusy3,MichaelBruenig3,ThomasSchmid5,QiangWang6, Prabal Dutta7,andAndreasTerzis1 1 Department of Computer Science, Johns Hopkins University 2 Computer Science Division, University of California, Berkeley 3 Australian Commonwealth Scientific and Research Organization (CSIRO) 4 Department of Computer Science, Friedrich–Alexander University Erlangen–Nuremberg 5 Department Computer Science, University of Utah 6 Department of Control Science and Engineering, Harbin Institute of Technology 7 Division of Computer Science and Engineering, University of Michigan, Ann Arbor Abstract. Some have argued that the dichotomy between high-performance op- eration and low resource utilization is false – an artifact that will soon succumb to Moore’s Law and careful engineering. If such claims prove to be true, then the traditional 8/16- vs. 32-bit power-performance tradeoffs become irrelevant, at least for some low-power embedded systems. We explore the veracity of this the- sis using the 32-bit ARM Cortex-M3 microprocessor and find quite substantial progress but not deliverance. The Cortex-M3, compared to 8/16-bit microcon- trollers, reduces latency and energy consumption for computationally intensive tasks as well as achieves near parity on code density. However, it still incurs a 2 overhead in power draw for “traditional” sense-store-send-sleep applica- tions.∼ × These results suggest that while 32-bit processors are not yet ready for applications with very tight power requirements, they are poised for adoption ev- erywhere else. Moore’s Law may yet prevail. 1Introduction The desire to operate unattended for long periods of time has been a driving force in de- signing wireless sensor networks (WSNs) over the past decade.
    [Show full text]
  • RIOT: an Open Source Operating System for Low-End Embedded Devices in the Iot Emmanuel Baccelli, Cenk Gundo¨ Gan,˘ Oliver Hahm, Peter Kietzmann, Martine S
    This article has been accepted for publication in a future issue of this journal, but has not been fully edited. Content may change prior to final publication. Citation information: DOI 10.1109/JIOT.2018.2815038, IEEE Internet of Things Journal 1 RIOT: an Open Source Operating System for Low-end Embedded Devices in the IoT Emmanuel Baccelli, Cenk Gundo¨ gan,˘ Oliver Hahm, Peter Kietzmann, Martine S. Lenders, Hauke Petersen, Kaspar Schleiser, Thomas C. Schmidt, and Matthias Wahlisch¨ Abstract—As the Internet of Things (IoT) emerges, compact low-end IoT devices. RIOT runs on minimal memory in the operating systems are required on low-end devices to ease devel- order of ≈10kByte, and can run on devices with neither MMU opment and portability of IoT applications. RIOT is a prominent (memory management unit) nor MPU (memory protection free and open source operating system in this space. In this paper, we provide the first comprehensive overview of RIOT. We cover unit). The goal of this paper is to provide an overview of the key components of interest to potential developers and users: RIOT, both from the operating system point of view, and from the kernel, hardware abstraction, and software modularity, both an open source software and ecosystem point of view. conceptually and in practice for various example configurations. We explain operational aspects like system boot-up, timers, power Prior work [28], [29] has surveyed the space of operating management, and the use of networking. Finally, the relevant APIs as exposed by the operating system are discussed along systems for low-end IoT devices.
    [Show full text]
  • A Tutorial on Performance Evaluation and Validation Methodology for Low-Power and Lossy Networks
    A Tutorial on Performance Evaluation and Validation Methodology for Low-Power and Lossy Networks Kosmas Kritsis, Georgios Papadopoulos, Antoine Gallais, Periklis Chatzimisios, Fabrice Theoleyre To cite this version: Kosmas Kritsis, Georgios Papadopoulos, Antoine Gallais, Periklis Chatzimisios, Fabrice Theoleyre. A Tutorial on Performance Evaluation and Validation Methodology for Low-Power and Lossy Networks. Communications Surveys and Tutorials, IEEE Communications Society, Institute of Electrical and Electronics Engineers, 2018, 20 (3), pp.1799 - 1825. 10.1109/COMST.2018.2820810. hal-01886690 HAL Id: hal-01886690 https://hal.archives-ouvertes.fr/hal-01886690 Submitted on 23 Apr 2020 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. 1 A Tutorial on Performance Evaluation and Validation Methodology for Low-Power and Lossy Networks Kosmas Kritsis, Georgios Z. Papadopoulos, Member, IEEE, Antoine Gallais, Periklis Chatzimisios, Senior Member, IEEE, and Fabrice Theoleyre,´ Senior Member, IEEE, Abstract—Envisioned communication densities in Internet of may be used for counting the number of vehicles, such to Things (IoT) applications are increasing continuously. Because control optimally the street traffic lights and to reduce the these wireless devices are often battery powered, we need waiting time [3]. specific energy efficient (low-power) solutions.
    [Show full text]
  • A Comparative Study Between Operating Systems (Os) for the Internet of Things (Iot)
    VOLUME 5 NO 4, 2017 A Comparative Study Between Operating Systems (Os) for the Internet of Things (IoT) Aberbach Hicham, Adil Jeghal, Abdelouahed Sabrim, Hamid Tairi LIIAN, Department of Mathematic & Computer Sciences, Sciences School, Sidi Mohammed Ben Abdellah University, [email protected], [email protected], [email protected], [email protected] ABSTRACT Abstract : We describe The Internet of Things (IoT) as a network of physical objects or "things" embedded with electronics, software, sensors, and network connectivity, which enables these objects to collect and exchange data in real time with the outside world. It therefore assumes an operating system (OS) which is considered as an unavoidable point for good communication between all devices “objects”. For this purpose, this paper presents a comparative study between the popular known operating systems for internet of things . In a first step we will define in detail the advantages and disadvantages of each one , then another part of Interpretation is developed, in order to analyze the specific requirements that an OS should satisfy to be used and determine the most appropriate .This work will solve the problem of choice of operating system suitable for the Internet of things in order to incorporate it within our research team. Keywords: Internet of things , network, physical object ,sensors,operating system. 1 Introduction The Internet of Things (IoT) is the vision of interconnecting objects, users and entities “objects”. Much, if not most, of the billions of intelligent devices on the Internet will be embedded systems equipped with an Operating Systems (OS) which is a system programs that manage computer resources whether tangible resources (like memory, storage, network, input/output etc.) or intangible resources (like running other computer programs as processes, providing logical ports for different network connections etc.), So it is the most important program that runs on a computer[1].
    [Show full text]
  • Iot Ecosystem Brand White Paper
    IoT Ecosystem Brand White Paper The Standards and Definition of IoT Ecosystem Brand September 20th, 2020 IoT Ecosystem Brand White Paper 1 There are times when it is wise for important role in business growth Foreword corporations to take a pregnant in the years to come. Frameworks pause. To look around and see if the that encourage entrepreneurism very things that have made them and put the customer at the center successful are the right ingredients of the organisation to create lasting to secure success in the future. lifetime value right across a vibrant ecosystem. As a diligent student of corporate history and business transformation But here is the issue that has been myself it is often easy to spot, with troubling me and many others for the magic of hindsight, the point at some time. which a successful company started to fail. From then on, it's often a long, Our financial accounting models, undignified journey of management performance metrics, calculations denial and subsequent terminal of economic profit, ROCE and many David Roth decline with the destruction of much of the established metrics that shareholder value along the way. analysts plug into their spreadsheets to uncover hidden value, are all CEO The Store WPP, Corporations have a bad habit of part of an old model - a model not Chairman BrandZTM thinking they will last forever - that's designed for an ecosystem era. and BAV Group, how they are built and structured. Global They struggle to extract onto the Consumers and customers have a balance sheet the true value the very different mindset as viewed ecosystem is creating, the value to through the lens of their changing the firm, it's ecosystem partners and attitudes and bonds towards the their respective brands.
    [Show full text]
  • RIOT: One OS to Rule Them All in the Iot Emmanuel Baccelli, Oliver Hahm
    RIOT: One OS to Rule Them All in the IoT Emmanuel Baccelli, Oliver Hahm To cite this version: Emmanuel Baccelli, Oliver Hahm. RIOT: One OS to Rule Them All in the IoT. [Research Report] RR-8176, 2012. hal-00768685v1 HAL Id: hal-00768685 https://hal.inria.fr/hal-00768685v1 Submitted on 3 Jan 2013 (v1), last revised 16 Jan 2013 (v3) HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. RIOT: One OS to Rule Them All in the IoT E. Baccelli, O. Hahm RESEARCH REPORT N° 8176 December 2012 Project-Team HiPERCOM ISSN 0249-6399 ISRN INRIA/RR--8176--FR+ENG RIOT: One OS to Rule Them All in the IoT E. Baccelli, O. Hahm ∗ Project-Team HiPERCOM Research Report n° 8176 — December 2012 — 10 pages Abstract: The Internet of Things (IoT) embodies a wide spectrum of machines ranging from sensors powered by 8-bits microcontrollers, to devices powered by processors roughly equivalent to those found in entry-level smartphones. Neither traditional operating systems (OS) currently running on internet hosts, nor typical OS for sensor networks are capable to fulfill all at once the diverse requirements of such a wide range of devices.
    [Show full text]