Practical UML Statecharts in C/C+, Event-Driven Programming for Embedded Systems: REV Edition Number is 2
5 Angebote vergleichen

Preise2011201320142015
Schnitt 37,20 41,24 37,13 50,40
Nachfrage
Bester Preis: 20,87 (vom 09.05.2014)
1
9780750687065 - Miro Samek: Practical UML Statecharts in C/C+: Event-Driven Programming for Embedded Systems
Miro Samek

Practical UML Statecharts in C/C+: Event-Driven Programming for Embedded Systems (2008)

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN PB

ISBN: 9780750687065 bzw. 0750687061, in Englisch, CRC Press, Taschenbuch.

52,88 + Versand: 66,21 = 119,09
unverbindlich
Von Händler/Antiquariat, Book Deals [60506629], Lewiston, NY, U.S.A.
This Book is in Good Condition. Clean Copy With Light Amount of Wear. 100% Guaranteed. Summary: Preface PART I STATECHARTS Chapter 1 Whirlwind Tour of Programming with Statecharts 1.1 Why Bother? 1.2 The Traditional Event-Action Paradigm 1.3 State Machines ? A Better Way of Programming 1.3.1 The Time Bomb Example 1.3.2 The Calculator Example 1.5 Object-Oriented Analogy 1.6 The Event-driven Framework 1.6 Summary Chapter 2 A Crash Course in Statecharts 2.1 The Essence of Finite State Machines 2.2 The Essence of UML Statecharts 2.3 Examples of State Models 2.4 Summary Chapter 3 Standard State Machine Implementations 3.1 State Machine Interface 3.2 Nested switch Statement 3.3 State Table 3.4 State Design Pattern 3.5 Optimal FSM Implementation 3.6 State Machines and C++ Exception Handling 3.7 Role of Pointer-to-Member Functions 3.8 Implementing Guards, Junctions, and Choice Points 3.9 Implementing Entry and Exit Actions 3.10 Dealing with State Hierarchy 3.11 Summary Chapter 4 QEP: A Minimal Hierarchical Event Processor 4.1 General Structure of the QEP Event Processor 4.2 An Annotated Example (QHsm) 4.3 QEP Structure 4.3.1 QEP Source Code Structure 4.3.2 Internal Representation of a State Machine 4.3.3 Initialization of a State Machine 4.3.4 Dispatching Events to a FSM 4.3.5 Executing a Transition in a FSM 4.3.6 Dispatching Events to a HSM 4.3.7 Executing a Transition in a HSM 4.3.8 Static Transition Optimization in a HSM 4.4 Porting and Configuring QEP 4.5 Caveats 4.6 Summary Chapter 5 Implementing State Machines with QEP 5.1 Implementing a HSM with QEP 5.1.1 Step 1: Enumerating Signals 5.1.2 Step 2: Defining Events 5.1.3 Step 3: Defining the QCalc State Machine 5.1.4 Step 4: Declaring the QCalc States 5.1.5 Step 5: Initializing the HSM 5.1.6 Step 6: Implementing the State Handler Functions 5.2 Implementing a FSM with QEP 2.5 Pitfalls to Avoid While Coding State Machines with QEP 2.5.1 Incomplete State Handlers 2-37 2.5.2 Confusing Statecharts with Flowcharts 2-38 2.5.3 Ill-Formed State Handlers 2-39 2.5.4 Suboptimal Signal Granularity 2-42 2.5.5 Violating the Run To Completion Semantics 2-42 4.6 Summary Chapter 6 State Patterns 6.1 Ultimate Hook 6.2 Reminder 6.3 Deferred Event 6.4 Orthogonal Component 6.5 Transition to History 6.6 Summary PART II EVENT-DRIVEN FRAMEWORK Chapter 7 QF: A Minimal Event-Driven Embedded Framework 7.1 Conventional Approach to Multithreading 7.2 Computing Model of QF 7.3 Annotated Example 7.3.1 The "Airplane in the Tunnel" Game 7.3.2 The Active Object Design 7.3.3 The Implementation 7.3.4 The Port for ARM Cortex-M3 7.3.5 Testing 7.4 Summary Chapter 8 Design of QF 8.1 Handling Errors and Exceptional Conditions 8.2 Memory Management 8.3 Mutual Exclusion and Blocking 8.4 Active Objects 8.5 Event Management in QF 8.6 Event Delivery Mechanisms in QF 8.9 Deferring and Recalling Events in QF 8.7 Time Events 8.8 Summary Chapter 9 Implementation of QF 9.1 Code Organization 9.2 Critical Section in QF 9.3 General QF Policies Enforced by Assertions 9.4 Active Object class 9.5 Native QF Event Queue 9.6 Native QF Memory Pool 9.7 Native QF Priority Set 9.8 Native QF Scheduler Chapter 10 Porting QF 10.1 QF Porting Guide 10.2 QF on Bare-Metal Targets (the Vanilla Port) 10.3 Using QF with a preemptive Real-Time Kernel (C/OS-II) 10.4 QF port to a POSIX-Compliant OS (Linux) 10.5 Summary Chapter 11 Conclusion 11.2 Rules for Developing Event-Driven Embedded Applications 11.3 Heuristics 11.4 Sizing Event Queues and Event Pools 11.5 System Integration 11.6 Summary of Key Elements 11.7 An Invitation Appendix A QK: A Single-Stack Preemptive Kernel A.2 Run-to-Completion Processing A.3 Synchronous and Asynchronous Preemptions A.4 Sta.
2
9780750687065 - Miro Samek: Practical UML Statecharts in C/C+: Event-Driven Programming for Embedded Systems
Miro Samek

Practical UML Statecharts in C/C+: Event-Driven Programming for Embedded Systems (2008)

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN PB US

ISBN: 9780750687065 bzw. 0750687061, in Englisch, 728 Seiten, 2. Ausgabe, CRC Press, Taschenbuch, gebraucht.

36,60 ($ 41,45)¹ + Versand: 3,52 ($ 3,99)¹ = 40,12 ($ 45,44)¹
unverbindlich
Lieferung aus: Vereinigte Staaten von Amerika, Usually ships in 24 hours.
Von Händler/Antiquariat, apex_media.
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, active object (actor) framework, called QP that enables direct manual coding UML statecharts and concurrent event-driven applications in C or C++. This 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. The lightweight QP active object framework goes several steps beyond the traditional real-time operating system (RTOS). In the simplest configuration, QP runs on bare-metal microcontroller 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 (state-machine.com/psicc2) contains complete open source code for QP and the free QM graphical modeling tool for QP, ports to popular processors, including ARM Cortex-M, ARM7/9, MSP430, AVR/AVR32, PIC24, RX, etc., as well as QP ports to operating systems, such as Linux, Windows, and Android. Paperback, Ausgabe: 2, Label: CRC Press, CRC Press, Produktgruppe: Book, Publiziert: 2008-10-01, Studio: CRC Press, Verkaufsrang: 424589.
3
9780750687065 - Miro Samek: Practical UML Statecharts in C/C+: Event-Driven Programming for Embedded Systems
Miro Samek

Practical UML Statecharts in C/C+: Event-Driven Programming for Embedded Systems (2008)

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN PB NW

ISBN: 9780750687065 bzw. 0750687061, in Englisch, 728 Seiten, 2. Ausgabe, CRC Press, Taschenbuch, neu.

36,60 ($ 41,45)¹ + Versand: 3,52 ($ 3,99)¹ = 40,12 ($ 45,44)¹
unverbindlich
Lieferung aus: Vereinigte Staaten von Amerika, Usually ships in 24 hours.
Von Händler/Antiquariat, Amazon.com.
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, active object (actor) framework, called QP that enables direct manual coding UML statecharts and concurrent event-driven applications in C or C++. This 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. The lightweight QP active object framework goes several steps beyond the traditional real-time operating system (RTOS). In the simplest configuration, QP runs on bare-metal microcontroller 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 (state-machine.com/psicc2) contains complete open source code for QP and the free QM graphical modeling tool for QP, ports to popular processors, including ARM Cortex-M, ARM7/9, MSP430, AVR/AVR32, PIC24, RX, etc., as well as QP ports to operating systems, such as Linux, Windows, and Android. Paperback, Ausgabe: 2, Label: CRC Press, CRC Press, Produktgruppe: Book, Publiziert: 2008-10-01, Studio: CRC Press, Verkaufsrang: 424589.
4
9780750687065 - Samek, Miro: Practical UML Statecharts in C/C+
Samek, Miro

Practical UML Statecharts in C/C+ (2008)

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN NW

ISBN: 9780750687065 bzw. 0750687061, in Englisch, Taylor and Francis, neu.

49,28 + Versand: 8,39 = 57,67
unverbindlich
Von Händler/Antiquariat, Paperbackshop-US [8408184], Secaucus, NJ, U.S.A.
New Book. Shipped from US within 10 to 14 business days. Established seller since 2000.
5
9780750687065 - Samek, Miro: Practical UML Statecharts in C/C+
Samek, Miro

Practical UML Statecharts in C/C+

Lieferung erfolgt aus/von: Irland EN PB NW

ISBN: 9780750687065 bzw. 0750687061, in Englisch, 2. Ausgabe, Elsevier Science & Technology, Taschenbuch, neu.

Lieferung aus: Irland, Versandkostenfrei.
Von Händler/Antiquariat, Kennys Bookshop and Art Galleries Ltd. [756279], Galway, Ireland.
2008. 2nd Edition. Paperback. . . . . . Over 350,000 customers served online!
Lade…