Skip to content

Instantly share code, notes, and snippets.

@maxcoldson
maxcoldson / xymodem-mini.c
Created June 21, 2025 18:44 — forked from zonque/xymodem-mini.c
simple xmodem/ymodem implementation in C
/*
* Minimalistic implementation of the XModem/YModem protocol suite, including
* a compact version of an CRC16 algorithm. The code is just enough to upload
* an image to an MCU that bootstraps itself over an UART.
*
* Copyright (c) 2014 Daniel Mack <[email protected]>
*
* License: MIT
*/