Programming the ARM(R) Cortex(R)-M4-based STM32F4 Microcontrollers with Simulink(R), Asadi Farzin, Pongswatd Sawai
Автор: Zhu Yifeng Название: Embedded Systems with Arm Cortex-M Microcontrollers in Assembly Language and C: Third Edition ISBN: 0982692668 ISBN-13(EAN): 9780982692660 Издательство: Неизвестно Цена: 9587.00 р. Наличие на складе: Есть (1 шт.) Описание: Das Taschenbuch, das jeder lesen muss, der etwas ueber Scrum wissen moechte.Es umfasst alle Rollen, Regeln und die grundlegenden Prinzipien von Scrum, basierend auf dem Scrum Guide von 2016. Durch die Beschreibung der Vergangenheit und Zukunft von Scrum wird darueber hinaus ein weitergehender Kontext aufgespannt.Der Autor Gunther Verheyen hat eine praezise, vollstaendige und leidenschaftliche Referenz zu Scrum geschrieben. Dabei vermittelt das Buch seine Einschaetzung von Scrum als Weg der Entdeckungen und Freude. Durch seinen Aufbau eignet es sich als hilfreicher Wegweiser auf diesem Weg.Nach Aussage von Ken Schwaber, dem Mitgestalter von Scrum, ist dieses Buch momentan die beste Beschreibung von Scrum. Das Buch verbindet einige seltene Merkmale:¢ Es beschreibt Scrum als Ganzes, bettet es aber in den weiteren Kontext aus Vergangenheit und Zukunft ein.¢ Der Autor fokussiert darauf, Scrum auf eine Weise zu erklaeren, die den Leser unterstuetzt: Die Sprache und der Stil des Buchs entsprechen der Philosophie von Scrum.¢ Das Buch zeigt die Freude am Scrum-Spiel.David Starr und Ralph Jocham, Professional Scrum Trainer und langjaehrige Experten agiler Arbeitsweisen, halten es fuer das ultimative Buch, das sie den Teilnehmern ihrer Scrum Kurse, aber auch Teams und Fuehrungskraeften in den Organisationen, die sie im Umgang mit Scrum coachen, empfehlen.
Описание: Globe & Mail bestselling Lesley Crewe`s new novel brings readers to 1960s Montreal & features a nosy would-be child detective searching for the truth about her mother. It`s 1967 in Montreal, the Expo is in full swing, and Audrey Parker has just moved with her dad to Notre-Dame-de-Grace, a whole new neighbourhood full of different kinds of people to spy on. Audrey is a lot of things: articulate, disarming, forthright. And, as her father reminds her often, indecently nosy. Audrey scribbles every observation down in her notebooks -- from which foods her new teacher eats for lunch, to how blue the water is in Greece, to what time the one-legged man across the street gets home. She is certain she will soon root out a murderer or uncover a mystery. But there`s only one mystery that really matters to her: her mother. Who was she? How did she die? Why won`t her father ever talk about her? Over a year of Audrey`s life, we bike with her through the streets of NDG, encountering stray animals, free-range kids, and adults both viciously cruel and wonderful. And we walk with Audrey across the threshold from childhood to adolescence, where she will discover the truth about her mother. Balancing humour and sadness as expertly as ever, author Lesley Crewe, who has so often captured Cape Breton perfectly on the page, turns her incisive observations for the first time to the NDG of the 1960s, where she grew up.
Автор: Martin, Trevor Название: The Designer`s Guide to the Cortex-M Microcontrollers ISBN: 0081006292 ISBN-13(EAN): 9780081006290 Издательство: Elsevier Science Рейтинг: Цена: 8083.00 р. Наличие на складе: Есть у поставщика Поставка под заказ.
Описание:
The Designer's Guide to the Cortex-M Microcontrollers gives you an easy-to-understand introduction to the concepts required to develop programs in C with a Cortex-M based microcontroller. The book begins with an overview of the Cortex-M family, giving architectural descriptions supported with practical examples, enabling you to easily develop basic C programs to run on the Cortex-M0/M0+/M3 and M4 and M7. It then examines the more advanced features of the Cortex architecture such as memory protection, operating modes, and dual stack operation.
Once a firm grounding in the Cortex-M processor has been established the book introduces the use of a small footprint RTOS and the CMSIS-DSP library. The book also examines techniques for software testing and code reuse specific to Cortex-M microcontrollers. With this book you will learn: the key differences between the Cortex-M0/M0+/M3 and M4 and M7; how to write C programs to run on Cortex-M based processors; how to make the best use of the CoreSight debug system; the Cortex-M operating modes and memory protection; advanced software techniques that can be used on Cortex-M microcontrollers; how to use a Real Time Operating System with Cortex-M devices; how to optimize DSP code for the Cortex-M4; and how to build real time DSP systems.
Includes an update to the latest version (5) of MDK-ARM, which introduces the concept of using software device packs and software components
Includes overviews of the new CMSIS specifications
Covers developing software with CMSIS-RTOS showing how to use RTOS in a real world design
Provides a new chapter on the Cortex-M7 architecture covering all the new features
Includes a new chapter covering test driven development for Cortex-M microcontrollers
Features a new chapter on creating software components with CMSIS-Pack and device abstraction with CMSIS-Driver
Features a new chapter providing an overview of the ARMv8-M architecture including the TrustZone hardware security model
Microcontrollers are embedded into larger systems to provide benefits such as better performance, more features, better efficiency, lower costs and better dependability. This textbook introduces students to creating microcontroller-based embedded systems featuring an ARM Cortex-M CPU core.
Chapter 1 introduces students to the concepts of MCU-based embedded systems, and how they differ from general-purpose computers. It then introduces the ARM Cortex-M0+ CPU, the Kinetis KL25Z MCU, and the low cost FRDM-KL25Z MCU development board.
Chapter 2 presents the general purpose I/O peripheral to provide an early, hands-on experience with reading switches and lighting LEDs using C code. It also introduces the CMSIS hardware abstraction layer, which simplifies software access to peripherals.
Chapter 3 introduces multitasking on the CPU, with the goals of improving responsiveness and software modularity while reducing CPU overhead. The interplay of interrupts, peripherals and schedulers (both cooperative and preemptive) is examined.
Chapter 4 presents the ARM Cortex-M0+ processor core, including organization, registers, memory, and instruction set. It then discusses interrupts and exceptions, including CPU response and hardware configuration. Designing software for a system with interrupts is discussed, including program design (including partitioning work), interrupt configuration, writing handlers in C, and sharing data safely given preemption.
Chapter 5 first gives an overview of tool-chain which translates a program from C source code to executable object code. It then shows side-by-side the source code and the object code the tool-chain has generated to implement it. Topics covered include functions, arguments, return values, activation records, exception handlers, control flow constructs for loops and selection, memory allocation and use, and accessing data in memory.
Chapter 6 presents analog interfacing, starting with theory and ending with practical implementations. Quantization and sampling are presented as a foundation for digital to analog conversion, and analog to digital conversion. The DAC, ADC and analog comparator peripherals are presented and used.
Chapter 7 presents timer peripherals and their use for generating a periodic interrupt or a pulse-width modulated signal, or for measuring elapsed time or a signal's frequency. Watchdog timers, used to detect and reset an out-of-control program, are also discussed. The SysTick, PIT, TPM and COP timers are examined.
Chapter 8 discusses serial communications, starting with the fundamentals of data serialization, framing, error detection, media access control and addressing. Software queues are introduced to show how to buffer data between communication ISRs and other parts of the program. Three protocols and their supporting peripherals are investigated next: SPI, asynchronous serial (UART) and I2C. UART communication is demonstrated using the FRDM-KL25Z's debug MCU as a serial port bridge over USB to the PC. I2C communication is demonstrated using the FRDM-KL25Z's built-in 3 axis accelerometer with I2C interface.
Chapter 9 introduces the direct memory access peripheral and its ability to transfer data autonomously, offloading work from the CPU and offering dramatically improved performance. Examples include using DMA for bulk data copying, and for DAC-based analog waveform generation with precise timing.
An appendix covers how to measure the power and energy use on the FRDM-KL25Z board, including disconnecting the debug MCU to reduce power. Energy measurement using an ultracapacitor is also presented.
For use in ECE, EE, and CS departments.
Автор: Dhananjay V. Gadre; Sarthak Gupta Название: Getting Started with Tiva ARM Cortex M4 Microcontrollers ISBN: 8132239067 ISBN-13(EAN): 9788132239062 Издательство: Springer Рейтинг: Цена: 16769.00 р. Наличие на складе: Поставка под заказ.
Описание: The book presents laboratory experiments concerning ARM microcontrollers, and discusses the architecture of the Tiva Cortex-M4 ARM microcontrollers from Texas Instruments, describing various ways of programming them. Given the meager peripherals and sensors available on the kit, the authors describe the design of Padma – a circuit board with a large set of peripherals and sensors that connects to the Tiva Launchpad and exploits the Tiva microcontroller family’s on-chip features. ARM microcontrollers, which are classified as 32-bit devices, are currently the most popular of all microcontrollers. They cover a wide range of applications that extend from traditional 8-bit devices to 32-bit devices. Of the various ARM subfamilies, Cortex-M4 is a middle-level microcontroller that lends itself well to data acquisition and control as well as digital signal manipulation applications. Given the prominence of ARM microcontrollers, it is important that they should be incorporated in academic curriculums. However, there is a lack of up-to-date teaching material – textbooks and comprehensive laboratory manuals. In this book each of the microcontroller’s resources – digital input and output, timers and counters, serial communication channels, analog-to-digital conversion, interrupt structure and power management features – are addressed in a set of more than 70 experiments to help teach a full semester course on these microcontrollers. Beyond these physical interfacing exercises, it describes an inexpensive BoB (break out board) that allows students to learn how to design and build standalone projects, as well a number of illustrative projects.
Автор: Dhananjay V. Gadre; Sarthak Gupta Название: Getting Started with Tiva ARM Cortex M4 Microcontrollers ISBN: 8132237641 ISBN-13(EAN): 9788132237648 Издательство: Springer Рейтинг: Цена: 16769.00 р. Наличие на складе: Есть у поставщика Поставка под заказ.
Описание: The book presents laboratory experiments concerning ARM microcontrollers, and discusses the architecture of the Tiva Cortex-M4 ARM microcontrollers from Texas Instruments, describing various ways of programming them.
Описание: Symbiosis in nature is the interaction between two distinct species looking to forge closer long-term relationships. There are three types of interactions; "Mutualism" (honey bees and flowers for example, where both species benefit), "Commensalism" (A bird`s nest on a tree for example, where one species benefits whilst the other is not harmed) and "Parasitism" (humans and mosquitoes for example, where one species benefits and the other is harmed). Symbiotic, human to human interactions seek to form closer long-term relationships based on "Mutualism", the type of interaction where there is mutual benefit. In the business context, symbiosis happens when key stakeholders collaborate as true partners (not adversaries) for mutual benefit. Assets exist to provide value to the organization and its stakeholders. The hotel asset owner through his representative interacts with the hotel brand operator to create value; find improvements, find opportunities. This book primarily looks at hospitality management, key relationships and the complex operational dynamics between two key stakeholders; hotel asset owners and their branded hotel operators focusing on five key principles and a symbiotic leadership approach as a key enabler. There is a lot of room for improvement and it is this crucial relationship that is examined. This guidebook has been written for hotel brand operators, hotel asset owners and their representatives who are managing, overseeing or monitoring a business venture for themselves or on behalf of others. It is also a valuable guide for students of hospitality as well as the curious layman - anyone who has stayed in a hotel.
Описание: Preface- Why Did I Write This Book?- Who Is This Book For?- What You Will Need For This Book?- What Will I learn in This Book?- About the Author- Errata and Suggestions Chapter 1: Getting Ready In this chapter we begin learning about microcontrollers what they are and the various languages we can use for them. Things like what software and hardware you will need to follow along with the book as well as the recommended boards to use CircuitPython is covered in this chapter. - Introduction to Microcontrollers- Microcontroller Programming Languages- Assembly Language- C- C++- BASIC- Rust- Python- Selecting a Board- Adafruit Metro M0 Express- Adafruit Feather M0 Express- Adafruit Metro M4 Express- Adafruit Grand Central M4 Express- The Arduino Zero- The STM32F746ZG Nucleo- Device Comparison- The Component List- The Mu Editor- Putty- Setting up Your Own Board- Conclusion Chapter 2: Electronics Primer picks up where chapter one leaves off and we move our discussion into the realm of electronics giving an overview of passive analog electronic components such as resistors, capacitors, and inductors. Along the way we learn about breadboards before diving into semiconductor electronics and basic digital electronics. - Electrical Wires- The Breadboard- Electronic Schematics- Passive Components- Resistors - Capacitors- Polarized Capacitors- Non-Polarized Capacitors- Capacitor Schematic Symbols- Inductors- Semiconductors- Diode- Light Emitting Diode- Transistor- Metal Oxide Semiconductor Field Effect Transistors- Integrated Circuits- Digital Logic- Logic Level Conversion- Flip-Flop- Registers and Shift Register- Multiplexers and Demultiplexers- Conclusion Chapter 3: Embedded Systems Overview covers the software side of things. We learn about embedded systems, its structure, hardware and software systems and the general architecture of embedded systems. Things like toolchains, testing and a heavy emphasis on software architecture is covered. For those of you reading this book to make and sell your own product, I cover the steps you need to take to carry a product to market. - An Overview of Embedded Systems- Microcontroller vs Applications Processor- Embedded Systems Structure- The Hardware System- The software System- The Toolchain- Software Testing- Embedded Software Architecture- The Driver Layer- Hardware Abstraction Layers (HAL)- Board Support Package (BSP)- Middleware- Software Framework- Code Generator- Platform- Embedded Systems Constrains- Cost- Performance- Energy budget- Embedded Systems Classification- Small Scale Systems- Medium Scale Systems- High Performance Systems- Distributed Embedded Systems- Seven Steps to Developing an Embedded Product- Conclusion Chapter 4: Python Programming looks at the python programming language you get a crash course in the core features of the language that you
Описание: Jumpstarting books provide an avenue for makers to quickly master topical knowledge! Each book starts with instructions on how to install or initialize the hardware or software needed to reach the "Hello, World" stage of getting started!
Автор: Salvador Pinillos Gimenez Название: 8051 Microcontrollers ISBN: 3030094901 ISBN-13(EAN): 9783030094904 Издательство: Springer Рейтинг: Цена: 8384.00 р. Наличие на складе: Поставка под заказ.
Описание: This textbook describes in detail the fundamental information about the 8051 microcontroller and it carefully teaches readers how to use the microcontroller to make both electronics hardware and software. In addition to discussion of the 8051 internals, this text includes numerous, solved examples, end-of-chapter exercises, laboratory and practical projects.
Автор: Norris Donald Название: Python for Microcontrollers ISBN: 1259644537 ISBN-13(EAN): 9781259644535 Издательство: McGraw-Hill Рейтинг: Цена: 3430.00 р. Наличие на складе: Есть у поставщика Поставка под заказ.
Описание: Build and program your own electronics projects with MicroPython in no time!
Автор: Lucio Di Jasio Название: Programming 16-Bit PIC Microcontrollers in C, ISBN: 1856178706 ISBN-13(EAN): 9781856178709 Издательство: Elsevier Science Рейтинг: Цена: 7409.00 р. Наличие на складе: Поставка под заказ.
Описание: Offers information you need to know about the architecture of 16-Bit PIC Microcontroller chips: how to program them, how to test them, and how to debug them. This title is suitable for experienced PIC users, including embedded engineers, programmers, designers, and SW and HW engineers, and new comers alike.
ООО "Логосфера " Тел:+7(495) 980-12-10 www.logobook.ru