[BREAKGLASS] ❄️ Firmware and simulator for Coldcard Hardware Wallet http://coldcard.com
Go to file
2019-06-27 09:21:43 -04:00
cli Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
docs Example electrum wallet files 2019-06-27 09:21:43 -04:00
external Update 2019-06-21 13:43:17 -04:00
graphics Basics of passphrase data entry 2019-03-28 11:35:35 -04:00
misc Because I can't delete a good regex 2019-06-03 16:07:54 -04:00
releases New release: 2019-06-26T1317-v2.1.0 2019-06-26 10:01:32 -04:00
shared Decorate the sensitive info when shown 2019-06-26 12:59:03 -04:00
stm32 Notes to self 2019-06-26 10:01:04 -04:00
testing Test cleanup/resync 2019-06-21 15:01:14 -04:00
unix Improve docs 2019-06-21 09:21:09 -04:00
.gitignore Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
.gitmodules Updated gitmodules, semi-manually 2018-07-24 14:32:18 -04:00
COPYING Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
LICENSE Year bump 2019-03-25 10:14:25 -04:00
README.md Updated install instruction for MacOS 2019-03-19 14:56:43 +01:00
requirements.txt Add ckcc tool 2018-07-24 14:58:57 -04:00

Coldcard Wallet

Coldcard is a Cheap, Ultra-secure & Opensource Hardware Wallet for Bitcoin and other crypto-currencies. Get yours at ColdcardWallet.com

Follow @COLDCARDwallet on Twitter to keep up with the latest updates and security alerts.

coldcard logo

coldcard picture front coldcard picture back

Check-out and Setup

Do a checkout, recursively to get all the submodules:

git clone --recursive https://github.com/Coldcard/firmware.git

Then:

  • cd firmware
  • git submodule update --init (if needed?)
  • brew install autogen
  • virtualenv -p python3 ENV (Python > 3.5 is required)
  • source ENV/bin/activate (or source ENV/bin/activate.csh based on shell preference)
  • pip install -r requirements.txt

Setup and Run the Desktop-based Coldcard simulator:

  • cd unix; make setup && make; ./simulator.py

Building the firmware:

  • cd ../cli; pip install --editable .
  • cd ../stm32; make setup && make; make firmware-signed.dfu
  • The resulting file, firmware-signed.dfu can be loaded directly onto a Coldcard, using this command (already installed based on above)
  • ckcc upgrade firmware-signed.dfu

Which looks like this:

[ENV] [firmware/stm32 42] ckcc upgrade firmware-signed.dfu
675328 bytes (start @ 293) to send from 'firmware-signed.dfu'
Uploading  [##########--------------------------]   29%  0d 00:01:04

MacOS

You'll probably need to install at least these packages:

brew install sdl2
brew tap PX4/px4
brew search px4
brew cask install gcc-arm-embedded
brew install px4/px4/gcc-arm-none-eabi-80 (latest gcc-arm-none-eabi-XX, currently 80)

Linux

You'll probably need to install these (Ubuntu 16):

apt install libudev-dev python-sdl2 gcc-arm-none-eabi

Code Organization

Top-level dirs:

shared

  • shared code between desktop test version and real-deal
  • expected to be largely in python, and higher-level

unix

  • unix (MacOS) version for testing/rapid dev
  • this is a simulator for the product

testing

  • test cases and associated data

stm32

  • embedded micro version, for actual product
  • final target is a binary file for loading onto hardware

external

  • code from other projects, ie. the dreaded submodules

stm32/bootloader

  • 32k of factory-set code that you cannot change
  • however, you can inspect what code is on your coldcard and compare to this.