Cargando…

Embedded computing and mechatronics with the PIC32 microcontroller /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autores principales: Lynch, Kevin (Kevin M.) (Autor), Marchuk, Nicholas (Autor), Elwin, Matthew (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Waltham, MA : Newnes is an imprint of Elsevier, [2015]
Temas:
Acceso en línea:Texto completo
Texto completo

MARC

LEADER 00000cam a2200000 i 4500
001 EBSCO_ocn932016646
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu|||unuuu
008 151210t20152016mau o 001 0 eng d
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d IDEBK  |d OPELS  |d N$T  |d CDX  |d COO  |d OCLCF  |d DEBSZ  |d EBLCP  |d YDXCP  |d IDB  |d OCLCQ  |d MERUC  |d OCLCQ  |d WRM  |d U3W  |d D6H  |d OCLCQ  |d WYU  |d LQU  |d DCT  |d UKMGB  |d OCLCQ  |d S2H  |d OCLCO  |d ORMDA  |d OCLCO  |d K6U  |d OCLCQ  |d OCLCO 
015 |a GBB5C2262  |2 bnb 
016 7 |a 017534465  |2 Uk 
019 |a 932262101  |a 935249566  |a 1105184752  |a 1105565583 
020 |a 9780124202351  |q (electronic bk.) 
020 |a 0124202357  |q (electronic bk.) 
020 |a 0124201652 
020 |a 9780124201651 
029 1 |a AU@  |b 000057013848 
029 1 |a CHNEW  |b 001013304 
029 1 |a DEBBG  |b BV043627376 
029 1 |a DEBSZ  |b 461174111 
029 1 |a DEBSZ  |b 482377224 
029 1 |a GBVCP  |b 845266047 
029 1 |a NLGGC  |b 401037924 
029 1 |a UKMGB  |b 017534465 
035 |a (OCoLC)932016646  |z (OCoLC)932262101  |z (OCoLC)935249566  |z (OCoLC)1105184752  |z (OCoLC)1105565583 
037 |a 9780124202351  |b Ingram Content Group 
037 |a 9780124202351  |b O'Reilly Media 
050 4 |a TJ223.P76 
072 7 |a COM  |x 000000  |2 bisacsh 
082 0 4 |a 006.2/2  |2 23 
049 |a UAMI 
100 1 |a Lynch, Kevin  |q (Kevin M.),  |e author. 
245 1 0 |a Embedded computing and mechatronics with the PIC32 microcontroller /  |c Kevin M. Lynch, Nicholas Marchuk, Matthew L. Elwin. 
264 1 |a Waltham, MA :  |b Newnes is an imprint of Elsevier,  |c [2015] 
264 4 |c ©2016 
300 |a 1 online resource 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
500 |a Includes index. 
588 0 |a Online resource; title from PDF title page (ScienceDirect, viewed December 15, 2015). 
505 0 |a Front Cover; Embedded Computing and Mechatronics with the PIC32 Microcontroller; Copyright; Dedication; Figure Credits; Contents; Preface; Contents; Choices made in this book; The NU32 development board; How to use this book in a course; Website, videos, and flipped classrooms; Other PIC32 references; Acknowledgments; Part I: Quickstart; Chapter 1: Quickstart; 1.1 What You Need; 1.1.1 Hardware; 1.1.2 Software; 1.2 Compiling the Bootloader Utility; 1.3 Compiling Your First Program; 1.4 Loading Your First Program; 1.5 Using make; 1.6 Chapter Summary; Further Reading; Part II: Fundamentals. 
505 8 |a Chapter 2: Hardware2.1 The PIC32; 2.1.1 Pins, Peripherals, and Special Function Registers (SFRs); 2.1.2 PIC32 Architecture; Peripherals; Digital input and output; Universal Serial Bus; Controller area network; Ethernet; DMA controller; In-Circuit Debugger; Watchdog timer; Change notification; Counter/timers; Output compare; Input capture; Serial Peripheral Interface; Inter-integrated circuit; Parallel master port; Analog input; Universal asynchronous receiver/transmitter; Real-time clock and calendar; Comparators; Other components; CPU; Bus matrix; Interrupt controller. 
505 8 |a Memory: Program flash and data RAMPrefetch cache module; Clocks and timing generation; 2.1.3 The Physical Memory Map; 2.1.4 Configuration Bits; 2.2 The NU32 Development Board; 2.3 Chapter Summary; 2.4 Exercises; Further Reading; Chapter 3: Software; 3.1 The Virtual Memory Map; 3.2 An Example: simplePIC.c; 3.3 What Happens When You Build?; 3.4 What Happens When You Reset the PIC32?; 3.5 Understanding simplePIC.c; Special function registers (SFRs); Pins RF0, RF1, and RD7 on the NU32; CLR, SET, and INV SFRs; 3.5.1 Down the Rabbit Hole; 3.5.2 The Header File p32mx795f512h.h. 
505 8 |a 3.5.3 Other Microchip Software: Harmony3.5.4 The NU32bootloaded.ld Linker Script; 3.6 Bootloaded Programs vs. Standalone Programs; 3.7 Build Summary; 3.8 Useful Command Line Utilities; 3.9 Chapter Summary; 3.10 Exercises; Further Reading; Chapter 4: Using Libraries; 4.1 Talking PIC; 4.2 The NU32 Library; 4.3 Bootloaded Programs; 4.4 An LCD Library; 4.5 Microchip Libraries; 4.6 Your Libraries; 4.7 Chapter Summary; 4.8 Exercises; Further Reading; Chapter 5: Time and Space; 5.1 Compiler Optimization; 5.2 Time and the Disassembly File; 5.2.1 Timing Using a Stopwatch (or an Oscilloscope). 
505 8 |a 5.2.2 Timing Using the Core Timer5.2.3 Disassembling Your Code; 5.2.4 The Prefetch Cache Module; 5.2.5 Math; 5.3 Space and the Map File; 5.4 Chapter Summary; 5.5 Exercises; Further Reading; Chapter 6: Interrupts; 6.1 Overview; 6.2 Details; The shadow register set; External interrupt inputs; Special Function Registers; 6.3 Steps to Configure and Use an Interrupt; 6.4 Sample Code; 6.4.1 Core Timer Interrupt; 6.4.2 External Interrupt; 6.4.3 Speedup Due to the Shadow Register Set; 6.4.4 Sharing Variables with ISRs; (1) Using the type qualifier volatile; (2) Enabling and disabling interrupts. 
520 8 |a Annotation  |b For the first time in a single reference, this book provides the beginner with a coherent and logical introduction to the hardware and software of the PIC32, bringing together key material from the PIC32 Reference Manual, Data Sheets, XC32 C Compiler User's Guide, Assembler and Linker Guide, MIPS32 CPU manuals, and Harmony documentation. This book also trains you to use the Microchip documentation, allowing better life-long learning of the PIC32. The philosophy is to get you started quickly, but to emphasize fundamentals and to eliminate "magic steps" that prevent a deep understanding of how the software you write connects to the hardware. Applications focus on mechatronics: microcontroller-controlled electromechanical systems incorporating sensors and actuators. To support a learn-by-doing approach, you can follow the examples throughout the book using the sample code and your PIC32 development board. The exercises at the end of each chapter help you put your new skills to practice. Coverage includes: A practical introduction to the C programming languageGetting up and running quickly with the PIC32An exploration of the hardware architecture of the PIC32 and differences among PIC32 familiesFundamentals of embedded computing with the PIC32, including the build process, time- and memory-efficient programming, and interruptsA peripheral reference, with extensive sample code covering digital input and output, counter/timers, PWM, analog input, input capture, watchdog timer, and communication by the parallel master port, SPI, I2C, CAN, USB, and UARTAn introduction to the Microchip Harmony programming frameworkEssential topics in mechatronics, including interfacing sensors to the PIC32, digital signal processing, theory of operation and control of brushed DC motors, motor sizing and gearing, and other actuators such as stepper motors, RC servos, and brushless DC motors For more information on the book, and to download free sample code, please visit http://www.nu32.org Extensive, freely downloadable sample code for the NU32 development board incorporating the PIC32MX795F512H microcontrollerFree online instructional videos to support many of the chapters 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Microcontrollers. 
650 0 |a Embedded computer systems. 
650 0 |a Mechatronics. 
650 6 |a Microcontrôleurs. 
650 6 |a Systèmes enfouis (Informatique) 
650 6 |a Mécatronique. 
650 7 |a COMPUTERS  |x General.  |2 bisacsh 
650 7 |a Embedded computer systems  |2 fast 
650 7 |a Mechatronics  |2 fast 
650 7 |a Microcontrollers  |2 fast 
700 1 |a Marchuk, Nicholas,  |e author. 
700 1 |a Elwin, Matthew,  |e author. 
776 0 8 |i Print version:  |a Lynch, Kevin.  |t Embedded Computing and Mechatronics with the PIC32 Microcontroller.  |d Saint Louis : Elsevier Science, ©2015  |z 9780124201651 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1107645  |z Texto completo 
856 4 0 |u https://learning.oreilly.com/library/view/~/9780124202351/?ar  |z Texto completo 
938 |a Coutts Information Services  |b COUT  |n 33364833 
938 |a EBL - Ebook Library  |b EBLB  |n EBL4188288 
938 |a EBSCOhost  |b EBSC  |n 1107645 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis33364833 
938 |a YBP Library Services  |b YANK  |n 12746955 
994 |a 92  |b IZTAP