Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created February 25, 2020 01:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/4e8d7140d1364342895ab38e708ea4e8 to your computer and use it in GitHub Desktop.
Save r-ryantm/4e8d7140d1364342895ab38e708ea4e8 to your computer and use it in GitHub Desktop.
/nix/store/3s6d2ssi5k138f7haqgn5vsgr6q1aykc-stlink-1.6.0
├── bin
│   ├── st-flash
│   ├── st-info
│   └── st-util
├── etc
│   ├── modprobe.d
│   │   └── stlink_v1.conf
│   └── udev
│   └── rules.d
│   ├── 49-stlinkv1.rules
│   ├── 49-stlinkv2-1.rules
│   ├── 49-stlinkv2.rules
│   └── 49-stlinkv3.rules
├── include
│   ├── stlink
│   │   ├── backend.h
│   │   ├── chipid.h
│   │   ├── commands.h
│   │   ├── flash_loader.h
│   │   ├── logging.h
│   │   ├── mmap.h
│   │   ├── reg.h
│   │   ├── sg.h
│   │   ├── usb.h
│   │   └── version.h
│   └── stlink.h
├── lib
│   ├── libstlink.a
│   ├── libstlink.so -> libstlink.so.1
│   ├── libstlink.so.1 -> libstlink.so.1.6.0
│   ├── libstlink.so.1.6.0
│   └── pkgconfig
│   └── stlink.pc
└── share
└── man
└── man1
├── st-flash.1.gz
├── st-info.1.gz
└── st-util.1.gz
12 directories, 27 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment