Editor Version ×
Standard

1.Easy to use and quick to get started

2.The process supports design scales of 300 devices or 1000 pads

3.Supports simple circuit simulation

4.For students, teachers, creators

Profession

1.Brand new interactions and interfaces

2.Smooth support for design sizes of over 5,000 devices or 10,000 pads

3.More rigorous design constraints, more standardized processes

4.For enterprises, more professional users

Ongoing

STD SAMD11C SWD Programmer Stick

License: CC-BY-SA 3.0

Mode: Editors' pick

  • 5.8k
  • 0
  • 3
Update time: 2022-12-04 16:50:38
Creation time: 2021-01-28 19:21:03
Description
# Overview The SWD Programmer Stick is a CMSIS-DAP compliant debugging probe with SWD protocol support based on [Free-DAP](https://github.com/ataradov/free-dap) by Alex Taradov. It can be used to program Microchip SAM and other ARM-based microcontrollers. The SWD Programmer Stick is built around an ATSAMD11C14A microcontroller. - Description and Firmware: https://github.com/wagiminator/SAMD-Development-Boards/tree/main/SWD_Programmer_Stick ![SWD_Programmer_Stick_pic1.jpg](https://raw.githubusercontent.com/wagiminator/SAMD-Development-Boards/main/SWD_Programmer_Stick/documentation/SWD_Programmer_Stick_pic1.jpg) # CMSIS-DAP CMSIS-DAP provides a standardized way to access the Coresight Debug Access Port (DAP) of an ARM Cortex microcontroller via USB. CMSIS-DAP is generally implemented as an on-board interface chip, providing direct USB connection from a development board to a debugger running on a host computer on one side, and over JTAG (Joint Test Action Group) or SWD (Serial Wire Debug) to the target device to access the Coresight DAP on the other. For more information refer to the [CMSIS-DAP Handbook](https://os.mbed.com/handbook/CMSIS-DAP). ![CMSIS-DAP.png](https://raw.githubusercontent.com/wagiminator/SAMD-Development-Boards/main/SWD_Programmer_Stick/documentation/CMSIS-DAP.png) # Compiling and Installing Firmware You can either compile the firmware yourself, or you can use the precompiled binary. Since there is no dedicated header for programming on the board, the microcontroller should be programmed before soldering. The [SAMD Programmer Adapter](https://github.com/wagiminator/SAMD-Development-Boards/tree/main/SAMD_Programmer_Adapter) is helpful for this. In order to program the microcontroller after soldering, the solder pads on the underside of the board must be used. ![SWD_Programmer_Stick_pic3.jpg](https://raw.githubusercontent.com/wagiminator/SAMD-Development-Boards/main/SWD_Programmer_Stick/documentation/SWD_Programmer_Stick_pic3.jpg) ## Compiling Firmware - Install [GNU Arm Embedded Toolchain](https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads) - Run "make all" inside the "source" folder - Use "Makefile_bl" if you want to compile for a 4KB bootloader ## Installing Firmware using a CMSIS-DAP Device - Install [OpenOCD](http://openocd.org/) - Connect the programmer to your PC and the target board. Make sure your target board is powered. - Run "openocd -f cmsis-dap.cfg" inside the "binaries" folder ## Installing Firmware using a SEGGER J-Link Device with OpenOCD - Install [OpenOCD](http://openocd.org/) - Connect the programmer to your PC and the target board. Make sure your target board is powered. - Run "openocd -f jlink.cfg" inside the "binaries" folder ## Installing Firmware using a SEGGER J-Link Device with J-Link Commander - Install [SEGGER J-Link Commander](http://www.segger.com/download-jlink.html) - Connect the programmer to your PC and the target board. Make sure your target board is powered. - Run "JLinkExe -commanderscript flash.jlink" inside the "binaries" folder ## Solving the Chicken and Egg Problem Unfortunately, you need another programmer to program the programmer. Here are a few cheap ways to do it: ### SEGGER J-Link EDU Mini (Tested) [J-LINK EDU Mini](https://www.segger.com/products/debug-probes/j-link/models/j-link-edu-mini/) is a version of the J-Link EDU in a reduced form factor with identical functionality as the larger devices. It has been designed to allow students and educational facilities as well as hobbyists access to top of the line debug probe technology. The device is available for around €16, the uploads are fast and it works reliably. It is not approved for commercial use. ![SWD_segger.jpg](https://raw.githubusercontent.com/wagiminator/SAMD-Development-Boards/main/SWD_Programmer_Stick/documentation/SWD_segger.jpg) ### nanoDAP (Tested) Debuggers based on the open source project [nanoDAP](https://github.com/wuxx/nanoDAP) are available on [aliexpress](https://aliexpress.com/wholesale?SearchText=cmsis-dap+daplink) for around €7. As CMSIS-DAP compliant devices, they work reliably and without problems. ![SWD_nanoDAP.jpg](https://raw.githubusercontent.com/wagiminator/SAMD-Development-Boards/main/SWD_Programmer_Stick/documentation/SWD_nanoDAP.jpg) ### DAPLink Emulator (Tested) These CMSIS-DAP compliant devices are available on [aliexpress](https://aliexpress.com/wholesale?SearchText=cmsis-dap+daplink) for around €10. They work fine too. ![SWD_DAPLink.jpg](https://raw.githubusercontent.com/wagiminator/SAMD-Development-Boards/main/SWD_Programmer_Stick/documentation/SWD_DAPLink.jpg) ### SAMD Development Boards (Not Tested) There are options to use the EDBG of some development boards for programming an external device, or to program them using a special firmware. Information on this can be found on the following pages: - https://www.avdweb.nl/arduino/samd21/samd21-programmer - https://learn.adafruit.com/programming-an-m0-using-an-arduino - https://github.com/adafruit/Adafruit_DAP # Operating Instructions Connect the SWD Programmer Stick to the target board via the 10-pin connector or the pin header (RST / DIO / CLK / GND). Make sure the target board is powered. You can supply power via the 3V3 pin (max 150 mA) or the 5V pin (max 400 mA). Plug the SWD Programmer Stick into a USB port on your PC. Since it is recognized as a Human Interface Device (HID), no driver installation is required. The SWD Programmer Stick should work with any debugging software that supports CMSIS-DAP (e.g. OpenOCD). Of course, it also works with the [SAMD DevBoards](https://github.com/wagiminator/SAMD-Development-Boards) in the Arduino IDE (Tools -> Programmer -> Generic CMSIS-DAP). ![SWD_Programmer_Stick_pic2.jpg](https://raw.githubusercontent.com/wagiminator/SAMD-Development-Boards/main/SWD_Programmer_Stick/documentation/SWD_Programmer_Stick_pic2.jpg) ![SWD_Programmer_Stick_pic4.jpg](https://raw.githubusercontent.com/wagiminator/SAMD-Development-Boards/main/SWD_Programmer_Stick/documentation/SWD_Programmer_Stick_pic4.jpg) # References, Links and Notes 1. [Original Free-DAP Project](https://github.com/ataradov/free-dap) 2. [CMSIS-DAP Handbook](https://os.mbed.com/handbook/CMSIS-DAP) 3. [GNU Arm Embedded Toolchain](https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads) 4. [OpenOCD](http://openocd.org/) 5. [SEGGER J-Link Commander](http://www.segger.com/download-jlink.html) 6. [nanoDAP](https://github.com/wuxx/nanoDAP) 7. [Adafruit DAP](https://github.com/adafruit/Adafruit_DAP) 8. [ARMmbed DAPLink](https://github.com/ARMmbed/DAPLink) 9. [Black Magic Probe](https://github.com/blacksphere/blackmagic)
Design Drawing
schematic diagram
1 /
PCB
1 /
The preview image was not generated, please save it again in the editor.
ID Name Designator Footprint Quantity
1 100n C1 C_0603 1
2 10u C2 C_0603 1
3 1u C3,C4 C_0603 2
4 SWD-Connector H1 SWD-CONNECTOR-SQUARE 1
5 SWD H2 210S-6X1/2.54 1
6 HDR-M-2.54_1x1 H3,H4,H5 PADS-SMALL 3
7 PRG LED1 LED0603 1
8 PWR LED2 LED0603 1
9 10k R1,R2 0603 2
10 100R R4,R5,R6 0603 3
11 1k R7,R8 0603 2
12 ATSAMD11C14A U1 SOIC-14_150MIL 1
13 XC6206P332MR U2 SOT-23-3_W 1
14 USB-Plug USB1 USB-M-48 1

Unfold

Project Attachments
Empty
Project Members
Target complaint
Related Projects
Change a batch
Loading...
Add to album ×

Loading...

reminder ×

Do you need to add this project to the album?

服务时间

周一至周五 9:00~18:00
  • 0755 - 2382 4495
  • 153 6159 2675

服务时间

周一至周五 9:00~18:00
  • 立创EDA微信号

    easyeda

  • QQ交流群

    664186054

  • 立创EDA公众号

    lceda-cn