The ATmega4809 Curiosity Nano evaluation kit is a hardware platform to evaluate the ATmega4809
microcontroller.
Supported by the Atmel Studio/Microchip MPLAB® X integrated development platform, the kit provides
easy access to the features of the ATmega4809 and explains how to integrate the device into a custom
design.
The Curiosity Nano series of evaluation kits include an onboard debugger, and no external tools are
necessary to program the ATmega4809.
Steps to start exploring the Microchip Curiosity Nano platform:
1.Download Atmel Studio/Microchip MPLAB® X.
2.Launch Atmel Studio/Microchip MPLAB® X.
3.Connect a USB cable (Standard-A to Micro-B or Micro-AB) between the PC and the debug USB
port on the kit.
ATmega4809 Curiosity Nano
Getting Started
When the Curiosity Nano kit is connected to your computer for the first time, the operating system will
perform a driver software installation. The driver file supports both 32- and 64-bit versions of Microsoft
Windows® XP, Windows Vista®, Windows 7, Windows 8, and Windows 10. The drivers for the kit are
included with Atmel Studio/Microchip MPLAB® X.
Once the Curiosity Nano board is powered the green status LED will be lit and Atmel Studio/Microchip
MPLAB® X will auto-detect which Curiosity Nano board is connected. Atmel Studio/Microchip MPLAB® X
will present relevant information like data sheets and kit documentation. The ATmega4809 device is
programmed by the onboard debugger and therefore no external programmer tool is required.
2.2 Design Documentation and Relevant Links
The following list contains links to the most relevant documents and software for the ATmega4809
Curiosity Nano.
•MPLAB® X IDE - MPLAB® X IDE is a software program that runs on a PC (Windows®, Mac OS®,
Linux®) to develop applications for Microchip microcontrollers and digital signal controllers. It is
called an Integrated Development Environment (IDE) because it provides a single integrated
"environment" to develop code for embedded microcontrollers.
•Atmel Studio - Free IDE for the development of C/C++ and assembler code for microcontrollers.
•IAR Embedded Workbench® for AVR® - This is a commercial C/C++ compiler that is available for
8-bit AVR. There is a 30-day evaluation version as well as a 4 KB code-size-limited kick-start
version available from their website.
•Atmel START - Atmel START is an online tool that helps the user to select and configure software
components and tailor your embedded application in a usable and optimized manner.
•Microchip Sample Store - Microchip sample store where you can order samples of devices.
•Data Visualizer - Data Visualizer is a program used for processing and visualizing data. The Data
Visualizer can receive data from various sources such as the EDBG Data Gateway Interface found
on Curiosity Nano and Xplained Pro boards and COM Ports.
•ATmega4809 Curiosity Nano website - Kit information, latest user guide and design
documentation.
•ATmega4809 Curiosity Nano on Microchip Direct - Purchase this kit on Microchip Direct.
Curiosity Nano is an evaluation platform that provides a set of small boards with access to most of the
microcontrollers I/Os. The platform consists of a series of low pin-count microcontroller (MCU) boards,
which are integrated with Atmel Studio/Microchip MPLAB® X to present relevant user guides, application
notes, data sheets, and example code. The platform features a Virtual COM port (CDC) for serial
communication to a host PC and a Data Gateway Interface (DGI) GPIO.
3.1 Onboard Debugger
ATmega4809 Curiosity Nano contains an onboard debugger for programming and debugging. The
onboard debugger is a composite USB device of several interfaces: a debugger, a mass storage device,
a data gateway, and a Virtual COM port (CDC).
Together with Atmel Studio/Microchip MPLAB® X, the onboard debugger interface can program and
debug the ATmega4809.
A Data Gateway Interface (DGI) is available for use with the logic analyzer channels for code
instrumentation, to visualize program flow. DGI GPIOs can be graphed using the Data Visualizer.
ATmega4809 Curiosity Nano
Curiosity Nano
The Virtual COM port is connected to a UART on the ATmega4809 and provides an easy way to
communicate with the target application through terminal software.
The onboard debugger controls one Power and Status LED (marked PS) on the ATmega4809 Curiosity
Nano board. The table below shows how the LED is controlled in different operation modes.
Table 3-1. Onboard Debugger LED Control
Operation ModeStatus LED
Boot loader modeLED blink at 1 Hz during power up.
Power-upLED is lit - constant.
Normal operationLED is lit - constant.
ProgrammingActivity indicator; the LED flashes slowly during
FaultThe LED flashes fast if a power fault is detected.
Sleep/OffLED is off. The onboard debugger is either in Sleep
3.1.1 Virtual COM Port
A general purpose USB serial bridge between a host PC and a target device.
programming/debugging.
mode or powered down. This can occur if the kit is
externally powered.
3.1.1.1 Overview
The debugger implements a composite USB device that includes a standard Communications Device
Class (CDC) interface, which appears on the host as a Virtual COM Port. The CDC can be used to
stream arbitrary data in both directions between the host and the target: characters sent from the host will
appear in UART form on the CDC TX pin, and UART characters sent into the CDC RX pin will be sent
back to the host.
On Windows machines, the CDC will enumerate as Curiosity Virtual COM Port and appear in the Ports
section of the device manager. The COM port number is usually shown here.
Info: On older Windows systems a USB driver is required for CDC. This driver is included in Atmel
Studio and MPLAB X installations.
On Linux machines, the CDC will enumerate and appear as /dev/ttyACM#.
On MAC machines, the CDC will enumerate and appear as /dev/tty.usbmodem#. Depending on which
terminal program is used, it will appear in the available list of modems as usbmodem#.
3.1.1.2 Limitations
Not all UART features are implemented in the debugger CDC. The constraints are outlined here:
•Baud rate must be in the range 1200 bps to 500 kbps. Values outside this range will be capped to
these values, without warning. Baud rate can be changed on-the-fly.
•Character format: only 8-bit characters are supported.
•Parity: can be odd, even, or none.
•Hardware flow control: not supported.
•Stop bits: one or two bits are supported.
3.1.1.3 Signaling
During USB enumeration, the host OS will start both communication and data pipes of the CDC
interface. At this point, it is possible to set and read back baud rate and other UART parameters of the
CDC, but data sending and receiving will not be enabled.
ATmega4809 Curiosity Nano
Curiosity Nano
When a terminal connects on the host, it must assert the DTR signal. This is a virtual control signal that
is implemented on the USB interface but not in hardware on the debugger. Asserting DTR from the host
will indicate to the debugger that a CDC session is active, and it will enable its level shifters (if available),
and start the CDC data send and receive mechanisms.
Deasserting the DTR signal will not disable the level shifters, but it will disable the receiver, so no further
data will be streamed to the host. Data packets that are already queued up for sending to the target will
continue to be sent out, but no further data will be accepted.
3.1.1.4 Advanced Use
CDC Override Mode
In normal operation, the onboard debugger is a true UART bridge between the host and the device.
However, under certain use cases, the debugger can override the Basic Operating mode and use the
CDC pins for other purposes.
Dropping a text file (with extension .txt) into the debugger’s mass storage drive can be used to send
characters out of the CDC TX pin. The text file must start with the characters:
CMD:SEND_UART=
The maximum message length is 50 characters - all remaining data in the frame is ignored.
The default baud rate used in this mode is 9600 bps, but if the CDC is already active or has been
configured, the baud rate last used still applies.
USB-Level Framing Considerations
Sending data from the host to the CDC can be done byte-wise or in blocks, which will be chunked into
64-byte USB frames. Each such frame will be queued up for sending to the CDC TX pin. Sending a small
amount of data per frame can be inefficient, particularly at low baud rates, since the debugger buffers
frames, not bytes. A maximum of 4 x 64-byte frames can be active at any time, the debugger will throttle
the incoming frames accordingly. Sending full 64-byte frames containing data is the most efficient.
When receiving data from the target, the debugger will queue up incoming bytes into 64-byte frames,
which are sent to the USB queue for transmission to the host when they are full. Incomplete frames are
also pushed to the USB queue at approximately 100 ms intervals, triggered by USB start-of-frame tokens.
Up to 8 x 64-byte frames can be active at any time. If the host, or software running on it, fails to receive
data fast enough, an overrun will occur. When this happens the last-filled buffer frame will be recycled
instead of being sent to the USB queue, and a full frame of data will be lost. To prevent this occurrence,
the user must ensure that the CDC data pipe is being read continuously, or the incoming data rate must
be reduced.
3.1.2 Mass Storage Disk
A simple way to program the target device through drag and drop with .hex-files.
3.1.2.1 Mass Storage Device
The debugger implements a highly optimized variant of the FAT12 file-system that has a number of
limitations, partly due to the nature of FAT12 itself, and partly due to optimizations made to fulfill its
purpose in this development kit.
ATmega4809 Curiosity Nano
Curiosity Nano
The CURIOSITY drive is USB Chapter 9 compliant as a mass storage device but does not in any way
fulfill the expectations of a general purpose mass storage device. This behavior is intentional.
The debugger enumerates as a Curiosity Nano USB device that can be found in the disk drives section of
the Windows device manager. The CURIOSITY drive appears in the file manager and claims the next
available drive letter in the system.
The CURIOSITY drive contains approximately 1 MB of free space. This does not reflect the size of the
target device's flash in any way. When programming a hex file, the binary data is encoded in ASCII with
metadata providing a large overhead, so 1 MB is a trivially chosen value for disk size.
It is not possible to format the CURIOSITY drive. When programming a file to the target, the filename may
appear in the disk directory listing - this is merely the operating system's view of the directory, which, in
reality, has not been updated. It is not possible to read out the file contents. Removing and replugging the
kit will return the file system to its original state, but the target will still contain the application that has
been previously programmed.
To erase the target device, simply copy a text file starting with "CMD:ERASE" onto the disk.
By default the CURIOSITY drive contains several read-only files for generating icons as well as reporting
status and linking to further information:
•AUTORUN.ICO - Icon file for the Microchip logo.
•AUTORUN.INF - System file required for Windows Explorer to show the icon file.
•KIT-INFO.HTM - Redirect to the development board web site.
•KIT-INFO.TXT - A text file containing details about the kit firmware, name, serial number, and
device.
•STATUS.TXT - A text file containing the programming status of the board.
Info: When STATUS.TXT is updated by the debugger dynamically, the contents may be
cached by the OS and not reflect the correct status.
The debugger does not mask any fuse bits or combinations when writing fuses. It is not possible to
disable UPDI by fuse setting on devices with a dedicated UPDI pin. For devices with a shared/
configurable UPDI pin, be sure not to select an alternate pin function for UPDI either by fuse setting in
Programming mode or by using the I/O view or memory views to modify the memory-mapped fuse
values. Disabling UPDI will render the debugger unable to contact the target device — an external
programmer capable of 12V UPDI activation will be required.
3.2 Curiosity Nano Standard Pinout
The twelve edge connections closest to the USB connector on Curiosity Nano kits have a standardized
pinout. The program/debug pins have different functions depending on the target programming interface
as shown in the table and figure below.
The kit is powered through the USB port and contains two regulators for generating 3.3V for the debugger
and an adjustable regulator for the target. The voltage from the USB connector can vary between 4.4V to
5.25V (according to the USB specification) and will limit the maximum voltage to the target. The figure
below shows the entire power supply system on ATmega4809 Curiosity Nano.
Figure 3-2. Power Supply Block Diagram
ATmega4809 Curiosity Nano
Curiosity Nano
3.3.1 Target Regulator
The target voltage regulator is a MIC5353 variable output LDO. The onboard debugger can adjust the
voltage output that is supplied to the kit target section by manipulating the MIC5353's feedback voltage.
The hardware implementation is limited to an approximate voltage range from 1.7V to 5.1V. Additional
output voltage limits are configured in the debugger firmware to ensure that the output voltage never
exceeds the hardware limits of the ATmega4809 microcontroller. The voltage limits configured in the onboard debugger on ATmega4809 Curiosity Nano are 1.8-5.1V.
The target voltage is set to 3.3V in production and can be changed through Atmel Studio. Any change to
the target voltage done in Atmel Studio is persistent, even through a power toggle.
The MIC5353 supports a maximum current load of 500 mA. It is an LDO regulator in a small package,
placed on a small PCB, and the thermal shutdown condition can be reached at lower loads than 500 mA.
The maximum current load depends on the input voltage, set output voltage, and the ambient
temperature. The figure below shows the safe operation area for the regulator, with an input voltage of
ATmega4809 Curiosity Nano can be powered by an external voltage instead of the onboard target
regulator. When the Voltage Off (VOFF) pin is shorted to ground (GND) the onboard debugger firmware
disables the target regulator and it is safe to apply an external voltage to the VTG pin.
ATmega4809 Curiosity Nano
Curiosity Nano
Applying an external voltage to the VTG pin without shorting VOFF to GND may cause
permanent damage to the kit.
Absolute maximum external voltage is 5.5V for the level shifters onboard. Applying a higher
voltage may cause permanent damage to the kit.
Programming, debugging, and data streaming is still possible while using external power: the debugger
and signal level shifters will be powered from the USB cable. Both regulators, the debugger, and the level
shifters are powered down when the USB cable is removed.
3.4 Disconnecting the Onboard Debugger
The block diagram below shows all connections between the debugger and the ATmega4809
microcontroller. The rounded boxes represent connections to the board edge on ATmega4809 Curiosity
Nano. The signal names are shown in Figure 3-1 and printed in silkscreen on the bottom side of the
board.
Figure 3-4. Onboard Debugger Connections to the ATmega4809
Curiosity Nano
By cutting the GPIO straps with a sharp tool, as shown in Figure 3-5, all I/Os connected between the
debugger and the ATmega4809 are completely disconnected. To completely disconnect the target
regulator, cut the VTG strap shown in Figure 3-5.
Info: Cutting the connections to the debugger will disable programming, debugging, data
streaming, and the target power supply. The signals will also be disconnected from the board
edge next to the onboard debugger section.
Info: Solder in 0Ω resistors across the footprints or short-circuit them with tin solder to
reconnect any cut signals.
The power to the ATmega4809 is connected from the onboard power supply to the target voltage supply
(VTG) with a cut strap as shown in Section 3.4 Disconnecting the Onboard Debugger. To measure the
power consumption of the ATmega4809 and other peripherals connected to the board, cut the strap and
connect an ammeter over the strap. The ammeter can be connected between the target VTG pad edge
connector and an external power supply for easy measurement. Alternatively, an external power supply
can be used as described in Section 3.3.2 External Supply.
ATmega4809 Curiosity Nano
Curiosity Nano
Info: The onboard level shifters will draw a small amount of current even when they are not in
use. A maximum of 10 µA can be drawn from the VTG net and an additional 2 µA can be drawn
from each I/O pin connected to a level shifter for a total of 20 µA. Disconnect the onboard
debugger and level shifters as described in Section 3.4 Disconnecting the Onboard Debugger
to prevent any leakage.
There is one yellow user LED available on the ATmega4809 Curiosity Nano kit that can be controlled by
either GPIO or PWM. The LED can be activated by driving the connected I/O line to GND.
Table 4-1. LED Connection
ATmega4809 PinFunctionShared Functionality
PF5Yellow LED0Edge connector
4.2.2 Mechanical Switch
ATmega4809 Curiosity Nano has one mechanical switch. This is a generic user configurable switch.
When the switch is pressed, it will drive the I/O line to ground (GND).
Info: There is a 100 kΩ pull-up resistor connected to the generic user switch. An internal pullup in the ATmega4809 is not required to use the switch.
ATmega4809 Curiosity Nano
Hardware User Guide
Table 4-2. Mechanical Switch
ATmega4809 PinDescriptionShared Functionality
PF6User switch (SW0)DBG3
4.2.3 Crystal
The ATmega4809 Curiosity Nano board has a 32.768 kHz crystal mounted.
The crystal is connected to the ATmega4809 by default, but the GPIOs are routed out to the edge
connector through not mounted resistor footprints. The two I/O lines routed to the edge connector are
disconnected by default to both reduce the chance of contention to the crystal as well as removing
excessive capacitance on the lines when using the crystal. To use the pins PF0 and PF1 as GPIO on the
edge connector, some hardware modification is needed. Solder a 0 Ω resistor or add a solder blob to the
footprints to connect the routing. The crystal should be disconnected when using the pin as GPIO, as this
might harm the crystal.
The 32.768 kHz crystal on ATmega4809 Curiosity Nano is a Kyocera Corporation
ST3215SB32768C0HPWBB 7 pF crystal.
The crystal has been formally tested and matched to the ATmega4809 by Kyocera. The test report is
available in the design documentation distributed with this document for ATmega4809 Curiosity Nano.
Info: Kyocera Crystal Device Corporation crystals that are matched with specific products can
be found on their website: http://prdct-search.kyocera.co.jp/crystal-ic/?p=en_search/
ATmega4809 Curiosity Nano features an onboard debugger that can be used to program and debug the
ATmega4809 using UPDI. The onboard debugger also includes a Virtual Com port interface over UART
and DGI GPIO. Atmel Studio/Microchip MPLAB® X can be used as a front-end for the onboard debugger
for programming and debugging. Data Visualizer can be used as a front-end for the CDC and DGI GPIO.
ATmega4809 Curiosity Nano
Hardware User Guide
4.3.1 Onboard Debugger Connections
The table below shows the connections between the target and the debugger section. All connections
between the target and the debugger are tri-stated as long as the debugger is not actively using the
interface, hence there is little contamination of the signals, the pins can be configured to anything the
user wants.
For further information on how to use the capabilities of the onboard debugger, see Section 3. Curiosity
This user guide provides the latest available revision of the kit. This chapter contains information about
known issues, a revision history of older revisions, and how older revisions differ from the latest revision.
5.1 Identifying Product ID and Revision
The revision and product identifier of Curiosity Nano boards can be found in two ways; either through
Atmel Studio/Microchip MPLAB® X or by looking at the sticker on the bottom side of the PCB.
By connecting a Curiosity Nano board to a computer with Atmel Studio/Microchip MPLAB® X running, an
information window will pop up. The first six digits of the serial number, which is listed under kit details,
contain the product identifier and revision.
The same information can be found on the sticker on the bottom side of the PCB. Most kits will print the
identifier and revision in plain text as A09-nnnn\rr, where nnnn is the identifier and rr is the revision.
Boards with limited space have a sticker with only a QR-code, which contains a serial number string.
The serial number string has the following format:
ATmega4809 Curiosity Nano
Hardware Revision History
"nnnnrrssssssssss"
n = product identifier
r = revision
s = serial number
The product identifier for ATmega4809 Curiosity Nano is A09-3094.
Even though there is an onboard debugger, external debuggers can be connected directly to
ATmega4809 Curiosity Nano to program/debug the ATmega4809. The onboard debugger keeps all the
pins connected to the ATmega4809 and board edge in tri-state when not actively used. Therefore, the
onboard debugger will not interfere with any external debug tools.
Figure 7-2. Connecting the PICkit™ 4 to ATmega4809 Curiosity Nano
Figure 7-3. Connecting the Atmel-ICE to ATmega4809 Curiosity Nano
Appendix
To avoid contention between the external debugger and the onboard debugger, do not start any
programming/debug operation with the onboard debugger through Atmel Studio/Microchip
MPLAB® X or mass storage programming while the external tool is active.
7.3 Getting Started with IAR
IAR Embedded Workbench® for AVR® is a proprietary high-efficiency compiler which is not based on
GCC. Programming and debugging of ATmega4809 Curiosity Nano is supported in IAR™ Embedded
Workbench for AVR using the Atmel-ICE interface. Some initial settings must be set up in the project to
get the programming and debugging to work.
The following steps will explain how to get your project ready for programming and debugging:
1.Make sure you have opened the project you want to configure. Open the OPTIONS dialog for the
project.
2.In the category General Options, select the Target tab. Select the device for the project, or, if not
listed, the core of the device.
3.In the category Debugger, select the Setup tab. Select Atmel-ICE as the driver.
Microchip provides online support via our web site at http://www.microchip.com/. This web site is used as
a means to make files and information easily available to customers. Accessible by using your favorite
Internet browser, the web site contains the following information:
•Product Support – Data sheets and errata, application notes and sample programs, design
resources, user’s guides and hardware support documents, latest software releases and archived
software
•General Technical Support – Frequently Asked Questions (FAQ), technical support requests,
online discussion groups, Microchip consultant program member listing
•Business of Microchip – Product selector and ordering guides, latest Microchip press releases,
listing of seminars and events, listings of Microchip sales offices, distributors and factory
representatives
Customer Change Notification Service
Microchip’s customer notification service helps keep customers current on Microchip products.
Subscribers will receive e-mail notification whenever there are changes, updates, revisions or errata
related to a specified product family or development tool of interest.
To register, access the Microchip web site at http://www.microchip.com/. Under “Support”, click on
“Customer Change Notification” and follow the registration instructions.
Customer Support
Users of Microchip products can receive assistance through several channels:
•Distributor or Representative
•Local Sales Office
•Field Application Engineer (FAE)
•Technical Support
Customers should contact their distributor, representative or Field Application Engineer (FAE) for support.
Local sales offices are also available to help customers. A listing of sales offices and locations is included
in the back of this document.
Technical support is available through the web site at: http://www.microchip.com/support
Microchip Devices Code Protection Feature
Note the following details of the code protection feature on Microchip devices:
•Microchip products meet the specification contained in their particular Microchip Data Sheet.
•Microchip believes that its family of products is one of the most secure families of its kind on the
market today, when used in the intended manner and under normal conditions.
•There are dishonest and possibly illegal methods used to breach the code protection feature. All of
these methods, to our knowledge, require using the Microchip products in a manner outside the
operating specifications contained in Microchip’s Data Sheets. Most likely, the person doing so is
engaged in theft of intellectual property.
•Microchip is willing to work with the customer who is concerned about the integrity of their code.
•Neither Microchip nor any other semiconductor manufacturer can guarantee the security of their
code. Code protection does not mean that we are guaranteeing the product as “unbreakable.”
Code protection is constantly evolving. We at Microchip are committed to continuously improving the
code protection features of our products. Attempts to break Microchip’s code protection feature may be a
violation of the Digital Millennium Copyright Act. If such acts allow unauthorized access to your software
or other copyrighted work, you may have a right to sue for relief under that Act.
Legal Notice
Information contained in this publication regarding device applications and the like is provided only for
your convenience and may be superseded by updates. It is your responsibility to ensure that your
application meets with your specifications. MICROCHIP MAKES NO REPRESENTATIONS OR
WARRANTIES OF ANY KIND WHETHER EXPRESS OR IMPLIED, WRITTEN OR ORAL, STATUTORY
OR OTHERWISE, RELATED TO THE INFORMATION, INCLUDING BUT NOT LIMITED TO ITS
CONDITION, QUALITY, PERFORMANCE, MERCHANTABILITY OR FITNESS FOR PURPOSE.
Microchip disclaims all liability arising from this information and its use. Use of Microchip devices in life
support and/or safety applications is entirely at the buyer’s risk, and the buyer agrees to defend,
indemnify and hold harmless Microchip from any and all damages, claims, suits, or expenses resulting
from such use. No licenses are conveyed, implicitly or otherwise, under any Microchip intellectual
property rights unless otherwise stated.
Trademarks
The Microchip name and logo, the Microchip logo, AnyRate, AVR, AVR logo, AVR Freaks, BitCloud,
chipKIT, chipKIT logo, CryptoMemory, CryptoRF, dsPIC, FlashFlex, flexPWR, Heldo, JukeBlox, KeeLoq,
Kleer, LANCheck, LINK MD, maXStylus, maXTouch, MediaLB, megaAVR, MOST, MOST logo, MPLAB,
OptoLyzer, PIC, picoPower, PICSTART, PIC32 logo, Prochip Designer, QTouch, SAM-BA, SpyNIC, SST,
SST Logo, SuperFlash, tinyAVR, UNI/O, and XMEGA are registered trademarks of Microchip Technology
Incorporated in the U.S.A. and other countries.
ClockWorks, The Embedded Control Solutions Company, EtherSynch, Hyper Speed Control, HyperLight
Load, IntelliMOS, mTouch, Precision Edge, and Quiet-Wire are registered trademarks of Microchip
Technology Incorporated in the U.S.A.
Adjacent Key Suppression, AKS, Analog-for-the-Digital Age, Any Capacitor, AnyIn, AnyOut, BodyCom,
CodeGuard, CryptoAuthentication, CryptoAutomotive, CryptoCompanion, CryptoController, dsPICDEM,
dsPICDEM.net, Dynamic Average Matching, DAM, ECAN, EtherGREEN, In-Circuit Serial Programming,
ICSP, INICnet, Inter-Chip Connectivity, JitterBlocker, KleerNet, KleerNet logo, memBrain, Mindi, MiWi,
motorBench, MPASM, MPF, MPLAB Certified logo, MPLIB, MPLINK, MultiTRAK, NetDetach, Omniscient
Code Generation, PICDEM, PICDEM.net, PICkit, PICtail, PowerSmart, PureSilicon, QMatrix, REAL ICE,
Ripple Blocker, SAM-ICE, Serial Quad I/O, SMART-I.S., SQI, SuperSwitcher, SuperSwitcher II, Total
Endurance, TSHARC, USBCheck, VariSense, ViewSpan, WiperLock, Wireless DNA, and ZENA are
trademarks of Microchip Technology Incorporated in the U.S.A. and other countries.
SQTP is a service mark of Microchip Technology Incorporated in the U.S.A.
Silicon Storage Technology is a registered trademark of Microchip Technology Inc. in other countries.
GestIC is a registered trademark of Microchip Technology Germany II GmbH & Co. KG, a subsidiary of
Microchip Technology Inc., in other countries.
All other trademarks mentioned herein are property of their respective companies.
2018, Microchip Technology Incorporated, Printed in the U.S.A., All Rights Reserved.
ISBN: 978-1-5224-3628-7
Quality Management System Certified by DNV
ISO/TS 16949
Microchip received ISO/TS-16949:2009 certification for its worldwide headquarters, design and wafer
fabrication facilities in Chandler and Tempe, Arizona; Gresham, Oregon and design centers in California
and India. The Company’s quality system processes and procedures are for its PIC® MCUs and dsPIC
DSCs, KEELOQ® code hopping devices, Serial EEPROMs, microperipherals, nonvolatile memory and
analog products. In addition, Microchip’s quality system for the design and manufacture of development
systems is ISO 9001:2000 certified.
2355 West Chandler Blvd.
Chandler, AZ 85224-6199
Tel: 480-792-7200
Fax: 480-792-7277
Technical Support:
http://www.microchip.com/
support
Web Address:
www.microchip.com
Atlanta
Duluth, GA
Tel: 678-957-9614
Fax: 678-957-1455
Austin, TX
Tel: 512-257-3370
Boston
Westborough, MA
Tel: 774-760-0087
Fax: 774-760-0088
Chicago
Itasca, IL
Tel: 630-285-0071
Fax: 630-285-0075
Dallas
Addison, TX
Tel: 972-818-7423
Fax: 972-818-2924
Detroit
Novi, MI
Tel: 248-848-4000
Houston, TX
Tel: 281-894-5983
Indianapolis
Noblesville, IN
Tel: 317-773-8323
Fax: 317-773-5453
Tel: 317-536-2380
Los Angeles
Mission Viejo, CA
Tel: 949-462-9523
Fax: 949-462-9608
Tel: 951-273-7800