Skip to content

Instantly share code, notes, and snippets.

View islandcontroller's full-sized avatar

islandc_ islandcontroller

View GitHub Profile
@islandcontroller
islandcontroller / XilinxISE_Windows10_Guide.md
Last active March 29, 2025 08:05
Installing and using Xilinx ISE 14.7 on Windows 10

Electronics Cases

This is a little overview over neat small-form-factor electronics cases.

Aluminium with end caps

Manufacturer Product Notes Image Distributors
Bopla Filotec Series preview bopla
Bud Industries EXN Series -xxP = plastic caps preview digikey
@islandcontroller
islandcontroller / WCH_LinkE_Update.md
Created January 1, 2025 21:57
WCH-LinkE online update using Windows Sandbox

WCH-LinkE online update using Windows Sandbox

A guide on updating your WCH-LinkE Debugger without contaminating your host system

Prerequisites

Installing the USBIP client

  • Open an administrator cmd
@islandcontroller
islandcontroller / cmake-helpers.cmake
Last active March 12, 2025 22:23
CMake Helper Scripts
# ------------------------------------------------------------------------------
# @brief
# Import raw binary data
#
# The binary data will be imported into an object file and placed into the
# ".rodata" section of the target. Each data import adds three global symbols:
# - <data_name>_start: Start marker (extern unsigned char)
# - <data_name>_end: End marker (extern unsigned char)
# - <data_name>_size: Size of the data (extern unsigned int)
#