├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.html ├── README.md ├── RELEASE_NOTES.txt └── images ├── The-Generic-STM32F103-Pinout-Diagram.pdf ├── buck50_full.png ├── buck50_small.png ├── gnuplot.png ├── gtkwave.png ├── logic.png └── pulseview.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/Makefile -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/RELEASE_NOTES.txt -------------------------------------------------------------------------------- /images/The-Generic-STM32F103-Pinout-Diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/images/The-Generic-STM32F103-Pinout-Diagram.pdf -------------------------------------------------------------------------------- /images/buck50_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/images/buck50_full.png -------------------------------------------------------------------------------- /images/buck50_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/images/buck50_small.png -------------------------------------------------------------------------------- /images/gnuplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/images/gnuplot.png -------------------------------------------------------------------------------- /images/gtkwave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/images/gtkwave.png -------------------------------------------------------------------------------- /images/logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/images/logic.png -------------------------------------------------------------------------------- /images/pulseview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanks4opensource/buck50/HEAD/images/pulseview.png --------------------------------------------------------------------------------