Search Advanced SearchView Cart   Checkout   
 Location:  Home » Books » Operating Systems » Practical UML Statecharts in C/C++, Second Edition: Event-Driven Programming for Embedded Systems  
Categories
Books
Related Categories
• Operating Systems
Computer Science
New Used Textbooks
Custom Stores
Specialty Stores
• Programming Languages
Computer Science
New Used Textbooks
Custom Stores
Specialty Stores
• General AAS
Computer Science
New Used Textbooks
Custom Stores
Specialty Stores
• Electrical Electronic Engineering
Engineering
New Used Textbooks
Custom Stores
Specialty Stores
• General AAS
Engineering
New Used Textbooks
Custom Stores
Specialty Stores
• General AAS
New Used Textbooks
Custom Stores
Specialty Stores
Books
• Embedded Systems
Microprocessors System Design
Hardware
Computers Internet
Subjects
• General
Operating Systems
Computers Internet
Subjects
Books
• General AAS
Operating Systems
Computers Internet
Subjects
Books
• UML
Software Design, Testing Engineering
Programming
Computers Internet
Subjects
• General
Software
Computers Internet
Subjects
Books
• General AAS
Software
Computers Internet
Subjects
Books
• Digital Design
Electrical Electronics
Engineering
Professional Technical
Subjects
• General
Electrical Electronics
Engineering
Professional Technical
Subjects
• General AAS
Electrical Electronics
Engineering
Professional Technical
Subjects
• General
Science
Subjects
Books
• General AAS
Science
Subjects
Books
• Paperback
Binding (binding)
Refinements
Books
• Printed Books
Format (feature_browse-bin)
Refinements
Books
Subcategories
Mass Market
Trade

Practical UML Statecharts in C/C++, Second Edition: Event-Driven Programming for Embedded Systems

Practical UML Statecharts in C/C++, Second Edition: Event-Driven Programming for Embedded Systems
Author: Miro Samek
Publisher: Newnes
Category: Book

List Price: $49.95
Buy New: $40.72
You Save: $9.23 (18%)



New (23) Used (4) from $40.72

Avg. Customer Rating: 5.0 out of 5 stars 2 reviews
Sales Rank: 154150

Media: Paperback
Edition: 2
Number Of Items: 1
Pages: 728
Shipping Weight (lbs): 2.8
Dimensions (in): 9 x 7.3 x 1.6

ISBN: 0750687061
Dewey Decimal Number: 621
EAN: 9780750687065
ASIN: 0750687061

Publication Date: October 1, 2008
Availability: Usually ships in 1-2 business days
Shipping: International shipping available
Condition: Delivery is usually 5 - 8 working days from order, Please check Product Details for Language, International is by Royal Mail Airmail

Similar Items:

  • Real Time UML Workshop for Embedded Systems (Embedded Technology)
  • Practical Statecharts in C/C++: Quantum Programming for Embedded Systems with CDROM
  • Beginning iPhone Development: Exploring the iPhone SDK
  • USB Complete: Everything You Need to Develop Custom USB Peripherals (Complete Guides series)
  • Event-Based Programming: Taking Events to the Limit

Editorial Reviews:

Product Description
Practical UML Statecharts in C/C++ Second Edition bridges the gap between high-level abstract concepts of the Unified Modeling Language (UML) and the actual programming aspects of modern hierarchical state machines (UML statecharts). The book describes a lightweight, open source, event-driven infrastructure, called QP that enables direct manual coding UML statecharts and concurrent event-driven applications in C or C++ without big tools.brThis book is presented in two parts. In Part I, you get a practical description of the relevant state machine concepts starting from traditional finite state automata to modern UML state machines followed by state machine coding techniques and state-machine design patterns, all illustrated with executable examples. In Part II, you find a detailed design study of a generic real-time framework indispensable for combining concurrent, event-driven state machines into robust applications. Part II begins with a clear explanation of the key event-driven programming concepts such as inversion of control (Hollywood Principle), blocking versus non-blocking code, run-to-completion (RTC) execution semantics, the importance of event queues, dealing with time, and the role of state machines to maintain the context from one event to the next. This background is designed to help software developers in making the transition from the traditional sequential to the modern event-driven programming, which can be one of the trickiest paradigm shifts. brThe lightweight QP event-driven infrastructure goes several steps beyond the traditional real-time operating system (RTOS). In the simplest configuration, QP runs on bare-metal microprocessor, microcontroller, or DSP completely replacing the RTOS. QP can also work with almost any OS/RTOS to take advantage of the existing device drivers, communication stacks, and other middleware. The accompanying website to this book contains complete open source code for QP, ports to popular processors and operating systems, including 80x86, ARM Cortex-M3, MSP430, and Linux, as well as all examples described in the book.brbr*Focuses on core concepts rather than tools which are always changing allowing the reader to continue to use this information with various projectsbr*Provides a complete, ready-to-use, open source software architecture for small and large embedded systemsbr*Includes an extensive example using the ARM Cortex-M3 throughout the book highlighting issues programmers and architects encounter in everyday life


Customer Reviews:

5 out of 5 stars Required reading for "old school" embedded systems programmers!   December 29, 2008
 2 out of 2 found this review helpful

If you are an accomplished or aspiring embedded systems programmer and resort to the "superloop" as your foremost implementation method, you absolutely MUST read this book.br /br /While not new concepts to the industry, the concepts presented in Miro's book are certainly not commonplace in many of the embedded systems code I've seen over many years in the industry.br /br /While UML makes for a clean, now defacto standard for presenting concepts, the real beauty in Miro's book is the use of a readily-available frameworks for immediately adopting the many lessons-learned and provided in the book. These complete, well written and excellently coded frameworks are available under the GPL and an alternate, low-cost license for those who wish to keep their code private.br /br /For strong C programmers, the implementation of the frameworks is a delight as one reads through the code and is treated to an incredibly simple, lightweight and extremely powerful system that will forever put an end to your future plans to "superloop" again--albeit for any system where C (or C++) is adequately supported by the hardware. For anyone admitting that "we've always done superloop and it has always worked in the past," get ready for a real-time, highly responsive system that actually IS event driven and thrives in as little as a few bytes of RAM and perhaps a K of ROM.br /br /For those who must hold on to the "superloop is king" mindset, consider the consequences of adding to your superloop an entirely new set of features and how that may affect the timing through your loop. I started with the "dining philosophers" example code discussed in the book and ported it to my own board (using a Reneasa H8S-2166 microcontroller) and augmented the code to be responsive to external events (mechanical switches). This required software debouncing. While my "example" was somewhat "trivial" in terms of what the functionality actually did, it is, in my opinion, extremely typical of changing requirements of both new and legacy code in the day-to-day evolution of embedded systems programming.br /br /My changes to the example code were to implement a "bike light" feature set. That is, whenever a switched was pressed, the bike light--if off--would illuminate. An LED on the board was used for this purpose. Pressed again, the light would blink. Pressed and held for 1 second while on or blinking, the light would turn off.br /br /The typical implementation in superloop would often require a considerate approach to ensure that the new functionality was "injected" into the "right" part of the loop, so as to be of minimal impact to other areas of critical timing code. If any kind of action within the new code delayed the loop processing, then the whole of the superloop could come under further scrutiny and therefore cause more pain as one trials and tests system responsiveness on a number of potential new fronts.br /br /Atop of this new functionality, the frameworks-provided QSpy code instrumentation system, which allows one to have a stream of information about the system states and transitions, was ported to use a UART on the H8S. Imagine adding all of this new functionality in a traditional superloop body of code. Now, imagine adding it in a matter of perhaps two hours using the frameworks AND not adversely impacting the "legacy" application code at all!br /br /One of the most beautiful aspects of these frameworks is the ability to focus strictly on the code necessary for the task at hand instead of the entire system as a whole. The frameworks substantially frees the programmer from having to manually manage system responsiveness typical of the superloop.br /br /Using UML to design and document an embedded system is relatively new to many embedded systems programmers. Miro also provides a free download stencil set for MS Visio for easily implementing statecharts, which should help those interested in pursuing the many benefits of the technology included in this book.br /br /I first met Miro at a developer's conference in San Diego, CA. One thing that comes out in his book and his discussions of this exciting technology is his passion for it. I was very interested in it, as he was displaying his software running on a very resource constrained microcontroller--all in about 40 bytes of RAM or a bit less.br /br /Drawn to his topic by his enthusiasm, I admired the frameworks even more as I began looking at the implementation and design of the code. The entire C bundle, with royalty-free 'private commerical use' license, one of either cooperative or preemptive schedulers (both are provided), event processor, code instrumentation support and more is all for under $2K. Of course, one may explore the entire frameworks for the cost of only a free download before ever making a licensing decision for a given product.br /br /Combined with the low-cost solution of using such powerful frameworks in conjunction with learning the valuable content of this book, teams everywhere can exploit the years of experience and very robust, capable code in a matter of hours instead of weeks, months and even years of doing things the "old school" way using superloops and other facilities instead of truly event-driven designs.br /br /This book and the free QF download are your entry into the 21st century of embedded systems programming. Because the code is provided in C, porting is rather easy and running on embedded systems and desktop systems is practical and easy. I was able to build and run the code as provided without modifications on my Linux, Mac and Windows systems and on the H8S and a Microchip PIC 24 with only a minimalist porting effort of about a half a day in each case. Imagine being able to run an entire real-time system that features excellent extensibility while freeing you from the rigors of managing superloop timing on your own hardware all within a few hours. Then, spend a couple of hours extending the system without impacting the rest of it? Lather, rinse, repeat...it is truly that simple and robust.br /br /Best of all, this book will open your eyes to modern methods and concepts for programming event-driven embedded systems. That is, systems that respond to internal and external events that naturally occur in all embedded systems designs. It is my firm belief that after reading this book and exploring the code on your own, you'll discover why I so heartily endorse it and now share the passion Miro has for this wonderful, very lightweight but robust, complete solution for modern embedded systems programming.


5 out of 5 stars An Indispensable Embedded Systems Classic!   December 18, 2008
 2 out of 2 found this review helpful

This book took me from being a C programming novice, to writing 1000s of lines of embedded control systems code, that has been running reliably for several years, with just one bug - my own! This book has been an indispensable resource to me in my work.br /br /Embedded systems programming can be such a perilous task, riddled with potential pitfalls an mistakes that can lead to potentially catastrophic bugs that are virtually impossible to track down. Throughout the text, important practical lessons and good design practices are shared, based on years of real-world experience, which can save novices from countless hours of painful debugging. br /br /The book is amazingly thorough, not only showing you "how", but also teaching you "why". All of the details of the framework and its implementation are clearly described, and the source code is available in the book and online, ready for immediate use on real applications.br /br /Samek does a truly masterful job of constructing an extremely lean yet very powerful framework for safe embedded systems programming. The approach is based on both on proven practical and solid academic foundations, such as: actor oriented programming, UML statecharts, publish-subscribe, design patterns, realtime operating systems, design by contract, etc.br /br /This second edition contains a lot of new material, including: new support for software tracing in event driven systems, along with interfaces to Matlab; a new chapter on QP-nano, an ultra-lightweight event driven infrastructure, that can run on low-end 8- and 16-bit MCUs; the first chapter, which introduces the main ideas and techniques in the book via real-time flyshoot game was so much fun to read; and numerous new explanations. In addition, the emphasis has shifted from C++ to C, with C++ codes available online. The first edition hit the markets around 2002, and became and instant classic; this second edition will no doubt continue that trend.br /br /- H.H., (Xerox) PARC.

Insurance Menu
Insurance Quote
Insurance Home
Auto Insurance
Homeowners Insurance
Life Insurance
Health Insurance
Disability Insurance
Commercial Insurance
Insurance Partners
Insurance Articles