首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 图书频道 > 进口原版 > Professional >

Design Patterns for Embedded Systems in C: An Embedded Software Engineering Toolkit

2017-07-23 
A recent survey stated that 52% of embedded projects are late by 4-5 months. This book can help get
商家名称 信用等级 购买信息 订购本书
Design Patterns for Embedded Systems in C: An Embedded Software Engineering Toolkit 去商家看看
Design Patterns for Embedded Systems in C: An Embedded Software Engineering Toolkit 去商家看看

Design Patterns for Embedded Systems in C: An Embedded Software Engineering Toolkit

A recent survey stated that 52% of embedded projects are late by 4-5 months. This book can help get those projects in on-time with design patterns. The author carefully takes into account the special concerns found in designing and developing embedded applications specifically concurrency, communication, speed, and memory usage. Patterns are given in UML (Unified Modeling Language) with examples including ANSI C for direct and practical application to C code.

A basic C knowledge is a prerequisite for the book while UML notation and terminology is included. General C programming books do not include discussion of the contraints found within embedded system design. The practical examples give the reader an understanding of the use of UML and OO (Object Oriented) designs in a resource-limited environment. Also included are two chapters on state machines. The beauty of this book is that it can help you today. .

*Design Patterns within these pages are immediately applicable to your project
*Addresses embedded system design concerns such as concurrency, communication, and memory usage
*Examples are contain ANSI C for ease of use with C programming code

作者简介

Embedded Software Methodologist. Triathlete. Systems engineer. Contributor to UML and SysML specifications. Writer. Black Belt. Neuroscientist. Classical guitarist. High school dropout. Bruce Powel Douglass, who has a doctorate in neurocybernetics from the USD Medical School, has over 35 years of experience developing safety-critical real-time applications in a variety of hard real-time environments. He is the author of over 5700 book pages from a number of technical books including Real-Time UML, Real-Time UML Workshop for Embedded Systems, Real-Time Design Patterns, Doing Hard Time, Real-Time Agility, and Design Patterns for Embedded Systems in C. He is the Chief Evangelist at IBM Rational, where he is a thought leader in the systems space and consulting with and mentors IBM customers all over the world. He can be followed on Twitter @BruceDouglass. Papers and presentations are available at his Real-Time UML Yahoo technical group (http://tech.groups.yahoo.com/group/RT-UML) and from his IBM thought leader page (www-01.ibm.com/software/rational/leadership/thought/brucedouglass.html).

目录

Chapter 1: What Is Embedded Programming?
Chapter 2: Embedded Programming with the Harmony/Embedded Development Process
Chapter 3: Design Patterns for Accessing the Hardware
Chapter 4: Design Patterns for Embedding Concurrency
Chapter 5: Design Patterns for Embedding Distribution
Chapter 6: Design Patterns for Memory
Chapter 7: Design Patterns for State Machines I: Implementing State Machines
Chapter 8: Design Patterns for State Machines II: Optimizing State Machines
Appendix A: UML Notation

网友对Design Patterns for Embedded Systems in C: An Embedded Software Engineering Toolkit的评论

I am going to have to agree with the points made in Vomkap Biskairo's 1-star review. It's hard to take a book seriously with so many coding typos, since it wastes your time and confuses you(example: pg 116 struct GasNotificationHandle declaration is incomplete). The (in my opinion) overly object oriented handling of every example detracts from key points and makes the code hard to read. Also adding to the difficulty is that there is no syntax highlighting to the code, and the filenames for each snippet appear ambiguously after the snippet equidistant from the next snippet. I also wish he covered singletons--even to a short extent.
This book does have some good concepts, but to deal with reading the code with typos and object rich format, I would recommend this book for someone who's very familiar with C and object patterns. If these problems were fixed, I wouldn't hesitate to give it 4 or 5 stars.

Within this book there are many 5-star worthy aspects as well as many 1-star aspects. Unfortunately, the 1-star aspects consisted of the majority of this book and took away from the delivery of the material. This major problems with this book can be summed up as follows: The author has an extremely high estimation of his other books and creations throughout his career and wants to reiterate those as often as possible. This created the following problems:

1. The first two chapters should be thrown out - a large portion of this section is describing how to make C an Object oriented language and promoting the author's other texts. It would be more helpful to put other texts in a reference section and just use C++, describing the features of C++ to avoid for embedded applications and why. Instead the author reinvents the wheel and wastes the reader's time in the process.

2. The extensive use of UML is overkill- the author helped develop UML standards so he uses it in all examples, even if it does not shed any more light on the design pattern in question. I do not like having to learn how to read a diagram in order to read a book. (e.g. I shouldn't have to read online about UML state diagrams when a simple state diagram with a legend will illustrate the point equally well in a fraction of the time) I should be able to just read the book and the diagrams should help facilitate that.

3. The book was written in PhD styling - The author will introduce some vocabulary in the middle of a point hes trying to make, which just makes it more difficult to understand.

In summary, I would not purchase this book again. If you are considering this book, look at "Real-Time Concepts for Embedded Systems" (ISBN-13: 978-1578201242 ISBN-10: 1578201241) instead. It covers all of the material in this book and then some.

Although I read the reviews about the book before my buying, I still made my purchase, and I was so excited when I received it. I started reading the "theory" about design patterns for few days and I was kind of happy. When it was the time to test the code I got very frustrated because the code doesn't compile (I tried the Observer's Pattern code at page 116). As other reviewers said, the book lacks of structure, no one took the time to compile and test the code, and needless to say that it's very hard to follow the code, even when you download it from the publisher site (it's in Word format, so I needed it to format into raw C text files). The UML diagrams are also hard to understand, and the code is incomplete.

There is an errata document, but it's also incomplete.

The book's title says "... An embedded software Engineering Toolkit". The book is far for being a toolkit. You will spend hours figuring out how to make the examples to work, and finally you'll release that you can't. Is that a toolkit? I guess it's not. I also think that using the object oriented approach is not really necessary for all the patterns. I found on-line an example of the observer pattern in pure C. Clean and clear, nothing about OOP.

No other book talks about design patterns in C for embedded systems, so in that context the book is very valuable. Nonetheless without examples to work with the book is almost useless.

My recommendation is that you DON'T BUY THIS BOOK until a new edition is ready, otherwise you'll complain as we've done. By the way, the publisher would give us a free copy of that newer edition for customers that actually bought this first one. (I live outside US, so I needed to pay shipment costs, taxes, currency parity, etc.)

Good read. The kindle version is not well formatted if reading on android. Reading on the DX was fine. Don't look for a lot of code you can compile and run. The book focuses on architecture and design. Highly recommended.

I've been working in Java for the past 12 years and am now returning to C for some project work. C was always my first love and I wish I'd stuck with it.

This book struck the right chord for me since it focused on how to do object oriented work using C and not C++ or Objective C. It answered questions that I'd wondered about.

I'm used to design patterns books for getting the architectural outlines and best practices for software development so this book works for me in that regard as well. It is going to help me get the structures of my coming projects right.

喜欢Design Patterns for Embedded Systems in C: An Embedded Software Engineering Toolkit请与您的朋友分享,由于版权原因,读书人网不提供图书下载服务

热点排行