Full description not available
T**G
A indeed good book to learn
For experienced engineers, it is still a good book to learn ARM cortex series M architecture. I know there is a 4th edition available. The 3'rd edition is still good enough to pick up many fundamental SOC knowledge.
S**R
This is a great introduction to ARM Assembly
This is a great introduction to ARM Assembly. The book gives the reader the chance to work through high level concepts, and implement the low level programming behind it. The book is set up to make a smooth transition from C to assembly. It does have typos, but that should be fixed in the next update: Professor Zhu has a list of them compiled.Overall, a great textbook for the price. He could easily have charged 2x or 3x as much.
D**D
"Masterpiece"
I am not sure where does all these 5 stars come from. Maybe they are the author's friends?I have bought hundreds of books online and this is first book I feel obligated to give a one star. I am shocked by the irresponsibility by the author.Typos and mistakes are everywhere. Some times you can find more than ten typos in a page. In some sections every r2 is printed as r6. Some sections every '1' is printed as '2'. (I am not sure if the author is capable of counting from 0 to 9)To give you an example, let's see how the author solves the problem "counting the number of 1-bits in a 32 bit integer". Savor the masterpiece:// Count the number of ones in x// Result saved in counterint main(void) {unsigned int x=0xAAAAAAAA;unsigned int y, z;unsigned int counter = 0;counter = x >> 31;while(x > 0) {y = x << 2;z = y >> 31;if (x < y) {counter += z + 1;} else {counter += z;}x = y;}while(1)}I cannot tell you what's wrong with this program because I have no idea how the author's mind works. The author uses 2 pages to give you a detailed explanation of how that masterpiece generates a 16. Yes indeed 0xAAAAAAAA does have 16 ones in it. However the award winning piece also tells you 0xFFFFFFFF has 16 ones in it and 0x22222222 has 16 ones in it. Actually I would rather call this "program" a "16-generator".So I just want to give you an simple. Don't take it too serious. These kind of masterpieces is every in the book. I think it may take me 60-150 pages of A4 pages to list them all.This book is also "amazing" because the author can use two pages to explain something that can be explained by two lines, without giving you a clear idea what he is talking about. However, he can also use several characters to explain something that deserves some examples. To give you an example, here is how he teaches you the instruction STM:STM Rn, register_list store multiple wordsThat's it, the only place tell you the usage of STM in this book. (Maybe I am not smart enough but I really still don't know how STM works)I won't give you a vise-versa example because I don't want to type two pages in the comment.Also when I see a figure or table in a book I don't expect how nice it is. But I certainly don't want them to be upside down or mirrored. But..Anyways I am tired of typing now. It's your choice whether to buy this book. I know when readers buy a book the author gets money. Everyone likes money. But you should have the basic conscience when writing a book and doing anything.****************************************** Edit ******************************************I recently briefly checked out the second version of this book. Most of the issues I found in the first version has been fixed. And the explanation are more comprehensive than the first version. So changing from 1 star to 4 stars.
R**.
If you want to hit the ground running... purchase this book!
I found this book to be highly resourceful and it offered an easy understanding of the ARM processor. The book does a great job of simplifying the ARM programming process by offering extremely practical and cool examples that allow the Micro-controller to be programmed in C and Assembly. The book is written very well and allows you to hit the ground running! I definitely recommend this book.
P**P
All things you need to google in one place
This book contains everything which you normally need to google every time when you come back to any STM32 project. In very friendly form it presents many details of STM32 code development together with samples of most common interfaces and stuff (UART, I2C, TIMERS, INTERRUPTS...). If you looking for book to learn from scratch this one is not for you. But if you have some experience and just want to have solid reference on desk for fast lookup this book is must have.
A**R
Typos and Poor Explanations
I would recommend looking for another book.I have been reading this book for the last couple days for my class and find myself more confused after reading it. I can't count how many mistakes I have found in the example code (for example, the example code that turns an LED on and off with a button, claims that bit 6 of GPIOB_ODR is used for the RED LED, when in fact it is bit 2)The other sections of example code use countless variables and definitions that have been defined SOMEWHERE, but not in the section of code being presented (and rarely in the section on the topic!) I am working with the SPI interfaces and the section of the book dedicated to SPI never once mentions what values things like SPI_CR1_BIDIMODE or SPI_CR1CRC_EN should be! It just presents them and assumes the reader should know the memory map of the device by heart!Of all the textbooks I've used for my engineering classes (undergrad and grad) this is one of the hardest to understand, and it's not because the material is complicated.
E**S
Cortex-M cource number ONE
When you are going into embedded system development using a cortex-M platform, there is a range of books available on amazon.com - I bought them all. This is the only book offering the complete foundation with supporting homepage with exercises, code templates, lab tests and errata doc. Yes, you might find typo's, like you will find typo's in other textbooks, but the auther has provided the reader with a detailed errate dococument. If you email the auther, he is also very keen to reply to help you. No book is perfect, but this one come very close !!!
S**O
No apparent proofreading
This is a partial review as I am still in the early chapters. I won't say the book is worthless, and in some ways I like the approach, but the number of errors is truly amazing. In my opinion the author owes a free electronic copy of an updated edition to those of us who purchased the first edition. What do you say, Dr. Xiu?
Trustpilot
3 weeks ago
1 day ago