Контакты/Проезд  Доставка и Оплата Помощь/Возврат
История
  +7(495) 980-12-10
  пн-пт: 10-18 сб,вс: 11-18
  shop@logobook.ru
   
    Поиск книг                    Поиск по списку ISBN Расширенный поиск    
Найти
  Зарубежные издательства Российские издательства  
Авторы | Каталог книг | Издательства | Новинки | Учебная литература | Акции | Хиты | |
 

Embedded Systems Circuits and Programming, Sanchez


Варианты приобретения
Цена: 16078.00р.
Кол-во:
Наличие: Поставка под заказ.  Есть в наличии на складе поставщика.
Склад Америка: Есть  
При оформлении заказа до: 2025-07-28
Ориентировочная дата поставки: Август-начало Сентября
При условии наличия книги у поставщика.

Добавить в корзину
в Мои желания

Автор: Sanchez
Название:  Embedded Systems Circuits and Programming
ISBN: 9781138074064
Издательство: Taylor&Francis
Классификация:

ISBN-10: 1138074063
Обложка/Формат: Paperback
Страницы: 891
Вес: 1.66 кг.
Дата издания: 21.04.2017
Язык: English
Иллюстрации: 35 tables, black and white; 241 illustrations, black and white
Размер: 254 x 178 x 45
Читательская аудитория: Tertiary education (us: college)
Ключевые слова: Software Engineering, COMPUTERS / Computer Engineering,COMPUTERS / Software Development & Engineering / General,TECHNOLOGY & ENGINEERING / Electrical
Основная тема: Software Engineering & Systems Development
Ссылка на Издательство: Link
Рейтинг:
Поставляется из: Европейский союз
Описание:

During the development of an engineered product, developers often need to create an embedded system--a prototype--that demonstrates the operation/function of the device and proves its viability. Offering practical tools for the development and prototyping phases, Embedded Systems Circuits and Programming provides a tutorial on microcontroller programming and the basics of embedded design.

The book focuses on several development tools and resources:

  • Standard and off-the-shelf components, such as input/output devices, integrated circuits, motors, and programmable microcontrollers
  • The implementation of circuit prototypes via breadboards, the in-house fabrication of test-time printed circuit boards (PCBs), and the finalization by the manufactured board
  • Electronic design programs and software utilities for creating PCBs
  • Sample circuits that can be used as part of the targeted embedded system
  • The selection and programming of microcontrollers in the circuit

For those working in electrical, electronic, computer, and software engineering, this hands-on guide helps you successfully develop systems and boards that contain digital and analog components and controls. The text includes easy-to-follow sample circuits and their corresponding programs, enabling you to use them in your own work. For critical circuits, the authors provide tested PCB files.




Cracking the Coding Interview: 189 Programming Questions and Solutions

Автор: McDowell Gayle Laakmann
Название: Cracking the Coding Interview: 189 Programming Questions and Solutions
ISBN: 0984782850 ISBN-13(EAN): 9780984782857
Издательство: Неизвестно
Рейтинг:
Цена: 5878.00 р.
Наличие на складе: Есть у поставщика Поставка под заказ.

Описание: Lendman contends that for over one hundred years powerful bankers have used their control over money, credit and debt for private self-enrichment, bankrolling and colluding with the US Congress and administrations to implement laws favouring them. This book shows people how they`ve been fleeced, including a plan for constructive change.

Electronic System-Level HW/SW Co-Design of Heterogeneous Multi-Processor Embedded Systems

Автор: Luigi Pomante
Название: Electronic System-Level HW/SW Co-Design of Heterogeneous Multi-Processor Embedded Systems
ISBN: 8793379382 ISBN-13(EAN): 9788793379381
Издательство: Taylor&Francis
Рейтинг:
Цена: 11789.00 р.
Наличие на складе: Есть у поставщика Поставка под заказ.

Описание: Provides models, methodologies and tools to support each step of the co-design flow of embedded systems implemented by exploiting heterogeneous multi-processor architectures mapped on distributed systems, as well as fully integrated onto a single chip.

C Programming for the PIC Microcontroller: Demystify Coding with Embedded Programming

Автор: Ward Hubert Henry
Название: C Programming for the PIC Microcontroller: Demystify Coding with Embedded Programming
ISBN: 1484255240 ISBN-13(EAN): 9781484255247
Издательство: Springer
Рейтинг:
Цена: 6288.00 р.
Наличие на складе: Есть у поставщика Поставка под заказ.

Описание: Chapter 1: IntroductionThis chapter introduces the reader to the aims and objectives of the book. It then covers some of the fundamentals of what is a micro-processor based system and how a micro-controller is different. It then covers the historic development of the 'C' programming language for PIC controllers.
Chapter 2: Our First ProgramThis chapter covers the following:

  • Process of creating a project in MPLABX and
  • Writing a simple 'C' program and adding comments to the instructions.
  • It explain what the configuration words for the PIC are and how to set them.
  • It explains what the PORTS are and how we use the TRIS registers to set the PORTS. It covers what are the main aspects of a 'C' program.
  • It covers how to set the internal oscillator.
  • Simulating a basic program within the IDE and simulating the program with a suitable ECAD software.
After reading this chapter you should be able to create a project and write a program that uses inputs from switches and turns on outputs.

Chapter 3: Updating the ProgramIn this chapter we will cover the "IF Then Else" instructions and saving the old program.
Chapter 4: Creating a DelayIn this chapter we will one of the most fundamental aspects of any micro-processor based system. How to overcome the fact that micros go too fast. This chapter covers the following:

  • Controlling the Timer0
  • Creating and calling subroutines
After reading this chapter you will be able to create a one second delay with any of the oscillator source and then create a variable delay. You will also learn how to create and use a subroutine
Chapter 5: Applying What We've LearnedIn this chapter we are going to apply what we have learnt in a simple program. It is probably the most common program that all new embedded programmers start with. It will take you through a structured approach to design programs.After reading this chapter you will be able to program s simple model of a set of traffic lights.
Chapter 6: Real World InputsIn this chapter we will look at using the PIC to measure real world signals such as signals from pressure, temperature and speed. It will cover the following:
  • Using the three registers that control the ADC.
  • Receiving an analogue input and displaying it as a binary value.
After reading this chapter you will be able to use analogue inputs.
Chapter 7: How to Use The Liquid Crystal DisplayThis chapter you should be able to use the LCD it covers the following;
  • How to set up the LCD
  • How to display text on the LCD
  • How to display numbers on the LCD
  • How to use arrays and pointers

Chapter 8: Creating a Header FileThis chapter covers how to create a header file. It then uses a header file in a program to control the LCD in 8 bit mode.
Site Reliability Engineering: How Google Runs Production Systems

Автор: Beyer Betsy, Jones Chris, Petoff Jennifer
Название: Site Reliability Engineering: How Google Runs Production Systems
ISBN: 149192912X ISBN-13(EAN): 9781491929124
Издательство: Wiley
Рейтинг:
Цена: 7602.00 р.
Наличие на складе: Есть у поставщика Поставка под заказ.

Описание: In this collection of essays and articles, key members of Google`s Site Reliability Team explain how and why their commitment to the entire lifecycle has enabled the company to successfully build, deploy, monitor, and maintain some of the largest software systems in the world.

Embedded Computing Systems

Название: Embedded Computing Systems
ISBN: 1466639229 ISBN-13(EAN): 9781466639225
Издательство: Mare Nostrum (Eurospan)
Рейтинг:
Цена: 28413.00 р.
Наличие на складе: Есть у поставщика Поставка под заказ.

Описание: Embedded computing systems play an important and complex role in the functionality of electronic devices. With our daily routines becoming more reliant on electronics for personal and professional use, the understanding of these computing systems is crucial. <em>Embedded Computing Systems: Applications, Optimization, and Advanced Design</em> brings together theoretical and technical concepts of intelligent embedded control systems and their use in hardware and software architectures. By highlighting formal modelling, execution models, and optimal implementations, this reference source is essential for experts, researchers, and technical supporters in the industry and academia.

Embedded Systems: ARM Programming and Optimization

Автор: Jason D. Bakos
Название: Embedded Systems: ARM Programming and Optimization
ISBN: 0128003421 ISBN-13(EAN): 9780128003428
Издательство: Elsevier Science
Рейтинг:
Цена: 7951.00 р.
Наличие на складе: Поставка под заказ.

Описание:

Embedded Systems: ARM Programming and Optimization combines an exploration of the ARM architecture with an examination of the facilities offered by the Linux operating system to explain how various features of program design can influence processor performance. It demonstrates methods by which a programmer can optimize program code in a way that does not impact its behavior but improves its performance. Several applications, including image transformations, fractal generation, image convolution, and computer vision tasks, are used to describe and demonstrate these methods. From this, the reader will gain insight into computer architecture and application design, as well as gain practical knowledge in the area of embedded software design for modern embedded systems.

Real-Time Software Design for Embedded Systems

Автор: Gomaa
Название: Real-Time Software Design for Embedded Systems
ISBN: 1107041090 ISBN-13(EAN): 9781107041097
Издательство: Cambridge Academ
Рейтинг:
Цена: 12672.00 р.
Наличие на складе: Есть у поставщика Поставка под заказ.

Описание: This tutorial reference takes the reader from use cases to complete architectures for real-time embedded systems using SysML, UML, and MARTE, including complete case studies using the COMET/RTE design methods. Its modular presentation of the design stages makes it perfect for students as well as experienced software engineers.

Embedded Systems: A Contemporary Design Tool

Автор: James K. Peckol
Название: Embedded Systems: A Contemporary Design Tool
ISBN: 1119457505 ISBN-13(EAN): 9781119457503
Издательство: Wiley
Рейтинг:
Цена: 16307.00 р.
Наличие на складе: Есть у поставщика Поставка под заказ.

Описание:

Embedded Systems: A Contemporary Design Tool, Second Edition

Embedded systems are one of the foundational elements of today's evolving and growing computer technology. From operating our cars, managing our smart phones, cleaning our homes, or cooking our meals, the special computers we call embedded systems are quietly and unobtrusively making our lives easier, safer, and more connected. While working in increasingly challenging environments, embedded systems give us the ability to put increasing amounts of capability into ever-smaller and more powerful devices.

Embedded Systems: A Contemporary Design Tool, Second Edition introduces you to the theoretical hardware and software foundations of these systems and expands into the areas of signal integrity, system security, low power, and hardware-software co-design. The text builds upon earlier material to show you how to apply reliable, robust solutions to a wide range of applications operating in today's often challenging environments.

Taking the user's problem and needs as your starting point, you will explore each of the key theoretical and practical issues to consider when designing an application in today's world. Author James Peckol walks you through the formal hardware and software development process covering:

  • Breaking the problem down into major functional blocks;
  • Planning the digital and software architecture of the system;
  • Utilizing the hardware and software co-design process;
  • Designing the physical world interface to external analog and digital signals;
  • Addressing security issues as an integral part of the design process;
  • Managing signal integrity problems and reducing power demands in contemporary systems;
  • Debugging and testing throughout the design and development cycle;
  • Improving performance.

Stressing the importance of security, safety, and reliability in the design and development of embedded systems and providing a balanced treatment of both the hardware and the software aspects, Embedded Systems: A Contemporary Design Tool, Second Edition gives you the tools for creating embedded designs that solve contemporary real-world challenges.


ООО "Логосфера " Тел:+7(495) 980-12-10 www.logobook.ru
   В Контакте     В Контакте Мед  Мобильная версия