Контакты/Проезд  Доставка и Оплата Помощь/Возврат
История
  +7 707 857-29-98
  +7(7172) 65-23-70
  10:00-18:00 пн-пт
  shop@logobook.kz
   
    Поиск книг                        
Найти
  Зарубежные издательства Российские издательства  
Авторы | Каталог книг | Издательства | Новинки | Учебная литература | Акции | Бестселлеры | |
 

Microcontrollers: High-Performance Systems and Programming, Julio Sanchez, Maria P. Canton


Варианты приобретения
Цена: 265410.00T
Кол-во:
 о цене
Наличие: Невозможна поставка.

в Мои желания

Автор: Julio Sanchez, Maria P. Canton
Название:  Microcontrollers: High-Performance Systems and Programming
ISBN: 9781466566651
Издательство: Taylor&Francis
Классификация:

ISBN-10: 1466566655
Обложка/Формат: Hardcover
Страницы: 701
Вес: 1.47 кг.
Дата издания: 31.10.2013
Язык: English
Иллюстрации: 49 tables, black and white; 184 illustrations, black and white
Размер: 261 x 176 x 44
Читательская аудитория: Tertiary education (us: college)
Ключевые слова: Circuits & components, TECHNOLOGY & ENGINEERING / Electronics / Circuits
Подзаголовок: High-performance systems and programming
Рейтинг:
Поставляется из: Европейский союз
Описание:

Focusing on the line of high-performance microcontrollers offered by Microchip, Microcontrollers: High-Performance Systems and Programming discusses the practical factors that make the high-performance PIC series a better choice than their mid-range predecessors for most systems. However, one consideration in favor of the mid-range devices is the abundance of published application circuits and code samples. This book fills that gap.

  • Possibility of programming high-performance microcontrollers in a high-level language (C language)
  • Source code compatibility with PIC16 microcontrollers, which facilitates code migration from mid-range to PIC18 devices
  • Pin compatibility of some PIC18 devices with their PIC16 predecessors, making the reuse of PIC16 controllers in circuits originally designed for mid-range hardware possible

Designed to be functional and hands-on, this book provides sample circuits with their corresponding programs. It clearly depicts and labels the circuits, in a way that is easy to follow and reuse. Each circuit includes a parts list of the resources and components required for its fabrication. The book matches sample programs to the individual circuits, discusses general programming techniques, and includes appendices with useful information.


Embedded Systems with Arm Cortex-M Microcontrollers in Assembly Language and C: Third Edition

Автор: Zhu Yifeng
Название: Embedded Systems with Arm Cortex-M Microcontrollers in Assembly Language and C: Third Edition
ISBN: 0982692668 ISBN-13(EAN): 9780982692660
Издательство: Неизвестно
Цена: 63910.00 T
Наличие на складе: Есть
Описание: 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.

Embedded Systems Fundamentals with Arm Cortex-M Based Microcontrollers: A Practical Approach

Автор: Dean Alexander G.
Название: Embedded Systems Fundamentals with Arm Cortex-M Based Microcontrollers: A Practical Approach
ISBN: 1911531034 ISBN-13(EAN): 9781911531036
Издательство: Неизвестно
Цена: 51490.00 T
Наличие на складе: Есть у поставщика Поставка под заказ.
Описание:

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.


Embedded Systems with Arm Cortex-M Microcontrollers in Assembly Language and C

Автор: Zhu Yifeng
Название: Embedded Systems with Arm Cortex-M Microcontrollers in Assembly Language and C
ISBN: 0982692633 ISBN-13(EAN): 9780982692639
Издательство: Неизвестно
Цена: 63910.00 T
Наличие на складе: Есть у поставщика Поставка под заказ.
Описание: 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.

Exploring C for Microcontrollers

Автор: Jivan Parab; Vinod G Shelake; Rajanish K. Kamat; G
Название: Exploring C for Microcontrollers
ISBN: 9048175259 ISBN-13(EAN): 9789048175253
Издательство: Springer
Рейтинг:
Цена: 95770.00 T
Наличие на складе: Есть у поставщика Поставка под заказ.
Описание: Unlike traditional embedded systems references, this book skips routine things to focus on programming microcontrollers, specifically MCS-51 family in `C` using Keil IDE. This book will kick-start your practical understanding of the most popular microcontroller.

Getting Started with Tiva ARM Cortex M4 Microcontrollers

Автор: Dhananjay V. Gadre; Sarthak Gupta
Название: Getting Started with Tiva ARM Cortex M4 Microcontrollers
ISBN: 8132239067 ISBN-13(EAN): 9788132239062
Издательство: Springer
Рейтинг:
Цена: 111790.00 T
Наличие на складе: Поставка под заказ.
Описание: 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.

Microprocessors and Microcontrollers

Автор: R. S. Kaler
Название: Microprocessors and Microcontrollers
ISBN: 9382332685 ISBN-13(EAN): 9789382332688
Издательство: Mare Nostrum (Eurospan)
Рейтинг:
Цена: 50820.00 T
Наличие на складе: Невозможна поставка.
Описание: Covers all aspects of microprocessors and microcontrollers. This book is based on Microprocessor 8085, 8086 and Microcontroller 8051. All other related microprocessors and microcontrollers, such as 80186, 80286, 80386, Pentium-4, ARM and PIC, are also discussed. A review of important terms and concepts is given at the end of each chapter. Each chapter also includes questions and problems.

8051 Microcontrollers

Автор: Salvador Pinillos Gimenez
Название: 8051 Microcontrollers
ISBN: 3030094901 ISBN-13(EAN): 9783030094904
Издательство: Springer
Рейтинг:
Цена: 55890.00 T
Наличие на складе: Поставка под заказ.
Описание: 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.

Designing Embedded Systems with PIC Microcontrollers,

Автор: Tim Wilmshurst
Название: Designing Embedded Systems with PIC Microcontrollers,
ISBN: 1856177505 ISBN-13(EAN): 9781856177504
Издательство: Elsevier Science
Рейтинг:
Цена: 42660.00 T
Наличие на складе: Поставка под заказ.
Описание: PIC microcontrollers are used worldwide in commercial and industrial devices. This title focuses on the 8-bit PIC which is a versatile work horse that completes many designs. It takes you from introduction of embedded systems through to advanced development techniques for utilizing and optimizing the PIC family of microcontrollers in your device.

Jumpstarting C: Learn the All-Purpose Programming Language for Microcontrollers and Computers

Автор: Donat Wolfram
Название: Jumpstarting C: Learn the All-Purpose Programming Language for Microcontrollers and Computers
ISBN: 1680454986 ISBN-13(EAN): 9781680454987
Издательство: Wiley
Рейтинг:
Цена: 11090.00 T
Наличие на складе: Есть у поставщика Поставка под заказ.
Описание: 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!

Programming 16-Bit PIC Microcontrollers in C,

Автор: Lucio Di Jasio
Название: Programming 16-Bit PIC Microcontrollers in C,
ISBN: 1856178706 ISBN-13(EAN): 9781856178709
Издательство: Elsevier Science
Рейтинг:
Цена: 49390.00 T
Наличие на складе: Поставка под заказ.
Описание: 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.

Designing Embedded Systems with 32-Bit PIC Microcontrollers and M

Автор: Dogan Ibrahim
Название: Designing Embedded Systems with 32-Bit PIC Microcontrollers and M
ISBN: 0080977863 ISBN-13(EAN): 9780080977867
Издательство: Elsevier Science
Рейтинг:
Цена: 50520.00 T
Наличие на складе: Есть у поставщика Поставка под заказ.
Описание: Teaches the basics of 32-bit C programming, including an introduction to the PIC 32-bit C compiler. This title includes a description of the architecture of 32-bit PICs and their applications, along with coverage of the relevant development and debugging tools.


Казахстан, 010000 г. Астана, проспект Туран 43/5, НП2 (офис 2)
ТОО "Логобук" Тел:+7 707 857-29-98 ,+7(7172) 65-23-70 www.logobook.kz
Kaspi QR
   В Контакте     В Контакте Мед  Мобильная версия