AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Jlink Download

skill-changde-tang-embedded-skills-jlink-download · by changde-tang

Use J-Link debugger to flash firmware (.bin or .hex) to ARM Cortex-M microcontrollers, supporting GD32/STM32 and other chips. Trigger scenarios: (1) Flash firmware to microcontroller, (2) User mentions "flash", "burn", "download firmware", "download", (3) Need to write compiled .bin or .hex file to chip, (4) Program target board via J-Link. Even if user just says "flash it" or "burn the chip", th…

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-changde-tang-embedded-skills-jlink-download

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-changde-tang-embedded-skills-jlink-download)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Jlink Download? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

J-Link Firmware Flashing

Invoke py_jlink_download.py to flash firmware files to target chips via J-Link debugger, supporting full process of erase, flash, verify, and reset.

Tool Script

Script Path: py_jlink_download.py Dependencies: Python 3.x + pylink library

pip install pylink

Usage

# Basic usage (default chip GD32F103C8)
python py_jlink_download.py firmware.bin

# Specify chip model
python py_jlink_download.py firmware.bin -d STM32F103C8

# Specify flash start address
python py_jlink_download.py firmware.bin -a 0x08001000

# Skip erase and verify (faster)
python py_jlink_download.py firmware.bin --no-erase --no-verify

Parameter Description

| Parameter | Short | Description | Default | | ------------- | ----- | ---------------------------------- | ------------- | | firmware | - | Firmware file path (.bin or .hex) | Required | | --device | -d | Target chip model | GD32F103C8 | | --addr | -a | Flash start address | 0x08000000 | | --no-erase | - | Skip chip erase before flashing | Default erase | | --no-verify | - | Skip flash data verification | Default verify | | --no-run | - | Do not reset and run after flash | Default reset |

Flash Process

  1. Initialize and connect J-Link
  2. Connect to target chip (SWD interface)
  3. Erase chip (optional)
  4. Write firmware file
  5. Read memory to verify data (optional)
  6. Reset and run program (optional)

Common Chip Models

  • GD32F103C8 / GD32F303RC
  • STM32F103C8 / STM32F103RET6

> If chip model is unknown, run JLinkDevices command to view the complete device list supported by J-Link.

Notes

  • Ensure J-Link debugger is connected to both computer and target board
  • Chip model must exactly match the name in J-Link database
  • For .hex file flashing, verification step errors can be ignored (hex format contains address information)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.