|Listed in category:
Have one to sell?

Embedded C Programming and the Atmel AVR

US $5.72
Condition:
Good
Breathe easy. Returns accepted.
Shipping:
Free Economy Shipping. See detailsfor shipping
Located in: Saint Louis, Missouri, United States
Delivery:
Estimated between Mon, Jun 17 and Sat, Jun 22 to 43230
Delivery time is estimated using our proprietary method which is based on the buyer's proximity to the item location, the shipping service selected, the seller's shipping history, and other factors. Delivery times may vary, especially during peak periods.
Returns:
30 days returns. Buyer pays for return shipping. See details- for more information about returns
Payments:
      
Earn up to 5x points when you use your eBay Mastercard®. Learn moreabout earning points with eBay Mastercard

Shop with confidence

eBay Money Back Guarantee
Get the item you ordered or your money back. Learn moreeBay Money Back Guarantee - opens new window or tab
Seller assumes all responsibility for this listing.
eBay item number:135052572036
Last updated on May 29, 2024 16:17:50 PDTView all revisionsView all revisions

Item specifics

Condition
Good: A book that has been read but is in good condition. Very minimal damage to the cover including ...
ISBN
9781401812065
Subject Area
Computers, Technology & Engineering
Publication Name
Embedded C Programming and the Atmel AVR
Item Length
9.4 in
Publisher
Delamr Cengage Learning
Subject
Microprocessors, General, Electrical, Programming Languages / C, Computer Engineering
Publication Year
2002
Type
Textbook
Format
Trade Paperback
Language
English
Author
Sarah Cox, Larry O'cull, Richard H. Barnett
Item Width
7.5 in
Item Weight
30.5 Oz
Number of Pages
520 Pages

About this product

Product Information

Enter the world of embedded programming and microcontroller applications! One of the only books available today that uses the increasingly popular and cost-effective Atmel AVR embedded controller as the platform and application for learning, Embedded C Programming and the Atmel AVR is the perfect choice for novices. Featuring a host of fully-functional example applications, this highly innovative book enables users to adopt a "learn by doing" approach as they develop the knowledge and skills needed to achieve proficiency. Following an introduction to Atmel AVR RISC processors, readers are launched immediately into an embedded C language tutorial. Here, they'll experiment with variables and constants, operators and expressions, control statements, pointers and arrays, memory types, preprocessor directives, real-time methods, and more! In addition to a comprehensive library functions reference, an entire chapter on the CodeVision AVR C Compiler provides clear, step-by-step instruction in IDE installation and operation, mixing Assembler with C, and using the Code Wizard Code Generator. Use of peripherals - such as keypads, LCD displays, and other common embedded microcontroller-related devices - is also explored fully in this all-inclusive, state-of-the-art programmer's how-to and reference manual.

Product Identifiers

Publisher
Delamr Cengage Learning
ISBN-10
1401812066
ISBN-13
9781401812065
eBay Product ID (ePID)
2300444

Product Key Features

Author
Sarah Cox, Larry O'cull, Richard H. Barnett
Publication Name
Embedded C Programming and the Atmel AVR
Format
Trade Paperback
Language
English
Subject
Microprocessors, General, Electrical, Programming Languages / C, Computer Engineering
Publication Year
2002
Type
Textbook
Subject Area
Computers, Technology & Engineering
Number of Pages
520 Pages

Dimensions

Item Length
9.4 in
Item Width
7.5 in
Item Weight
30.5 Oz

Additional Product Features

LCCN
2002-727167
Lc Classification Number
Qa76.73.C15b378 2003
Table of Content
Acknowledgments. Table of Contents. 1. Introduction. 2. The Atmel AVR RISC Processors. 2.1. Architectural Overview. 2.2. Registers and the Register File. 2.3. Memory Inside and Out. 2.4. Reset, Watchdog, and Interrupt Handling. 2.5. I/O Ports. 2.6. Timers, Counters, Pulse Width Modulators. 2.7. Serial Peripheral Interface ? SPI. 2.8. Universal Asynchronous Receiver Transmitter ? UART. 2.9. Analog Converter and Comparator. 2.10. The AVR RISC Instruction Set. 3. Embedded C Language Tutorial. 3.1. Beginning Concepts. 3.2. Variables and Constants. 3.2.1. Variable Types. 3.2.2. Variable Scope. 3.2.3. Constants. 3.2.4. Numeric Constants. 3.2.5. Character Constants. 3.2.6. Enumerations. 3.2.7. Storage Classes. 3.2.8. Type Casting. 3.3. Operators and Expressions. 3.3.1. Assignment and Arithmetic Operators. 3.3.2. Bitwise Operators. 3.3.3. Logical and Relational Operators. 3.3.4. Increment, Decrement and Compound Assignment. 3.3.5. The Conditional Expression. 3.3.6. Operator Precedence. 3.4. Control Statements. 3.4.1. While-Loop. 3.4.2. Do/While-Loop. 3.4.3. For-Loop. 3.4.4. If/Else. 3.4.5. Switch/Case. 3.4.6. Break, Continue and Goto. 3.5. Functions. 3.5.1. Prototyping and Function Organization. 3.5.2. Functions that Return Values. 3.5.3. Recursion. 3.6. Pointers and Arrays. 3.6.1. Pointers. 3.6.2. Arrays. 3.6.3. Multidimensional Arrays. 3.6.4. Pointers to Functions. 3.7. Structures and Unions. 3.7.1. Structures. 3.7.2. Arrays of Structures. 3.7.3. Pointers to Structures. 3.7.4. Unions. 3.7.5. typedef Operator. 3.7.6. Bits and Bitfields. 3.7.7. sizeof Operator. 3.8. Memory Types. 3.8.1. Constants and Variables. 3.8.2. Pointers. 3.8.3. Register Variables. 3.8.4. sfrb and sfrw. 3.9. Standard I/O. 3.9.1. Output Functions. 3.9.2. Input Functions. 3.10. Preprocessor Directives. 3.10.1. The #include Directive. 3.10.2. The #define Directive. 3.10.3. The #ifdef, #ifndef, #else and #endif Directives. 3.10.4. The #pragma Directive. 3.10.5. Other Macros and Directives. 3.11. Real Time Methods. 3.12. Program Planning, Elements and Structure. 4. The CodeVisionAVR C Compiler. 4.1. Introduction. 4.2. IDE Installation and Operation. 4.3. Compiler Preprocessor Directives. 4.4. Mixing Assembler with C. 4.5. Using the Code Wizard Code Generator. 5. Library Functions Reference. 6. Programming Examples. 6.1. 'Hello World' with a Blinky Light. 6.2. An RS232 LCD Display Driver. 6.3. Getting Another UART with Software. 6.4. Getting More Real Time Using Interrupt Handlers. 6.4.1. Timers. 6.4.2. Analog to Digital Converters and PWMs. 6.4.3. UART. 6.5. Accessing I2C and SPI Devices. 6.6. Program Control Using Pointers to Functions. 6.7. A Simple Boot Strap Loader. 7. Appendices. 7.1. Writing Smaller Code. 7.2. Getting Started with CodeVisionAVR and the Atmel STK500; by Pavel Haiduc. 7.3. ASCII Table. 8. Index. 9. CDROM. 9.1. Example Programs from Text. 9.2. CodeVisionAVR IDE and C Compiler Evaluation Installation.
Copyright Date
2003
Target Audience
College Audience
Dewey Decimal
005.13/3
Dewey Edition
21
Illustrated
Yes

Item description from the seller

Read and Dream

Read and Dream

99.2% positive feedback
8.0K items sold
Joined Sep 2013

Detailed seller ratings

Average for the last 12 months

Accurate description
4.9
Reasonable shipping cost
5.0
Shipping speed
5.0
Communication
5.0

Seller feedback (1,961)

h***n (82)- Feedback left by buyer.
Past 6 months
Verified purchase
Update! Seller acknowledged the discrepancy in the mailing procedure and made it alright. Feel free to order books from them based on their new knowledge of how to ship hardback books with protective packaging. Thanks to the seller for being forthright in making amends. This is an honest and above board seller.
a***e (1719)- Feedback left by buyer.
Past month
Verified purchase
Great packaging! Quick Shipment! Great communication! Great transaction! Highly recommend! ⭐️⭐️⭐️⭐️⭐️
4***4 (2758)- Feedback left by buyer.
Past month
Verified purchase
Excellent E-Bayer; quick ship, well packed; item as described!

Product ratings and reviews

4.0
1 product ratings
  • 0 users rated this 5 out of 5 stars
  • 1 users rated this 4 out of 5 stars
  • 0 users rated this 3 out of 5 stars
  • 0 users rated this 2 out of 5 stars
  • 0 users rated this 1 out of 5 stars

Most relevant reviews

  • Content good but price high since cd missing

    This book provides a good overview of the subject but is not specific to the current compiler used in at meal studio. Also the cd that is supposed to come with the book is missing

    Verified purchase: YesCondition: Pre-OwnedSold by: discountshelf