Skip to content

Instantly share code, notes, and snippets.

View JarekParal's full-sized avatar

Jaroslav Páral JarekParal

View GitHub Profile
@JarekParal
JarekParal / doxygen-with-travis-ci.md
Created April 5, 2019 09:30 — forked from bmegli/doxygen-with-travis-ci.md
Doxygen with Travis CI to gh-pages

Setup github project so that after any change to master branch doxygen documentation is generated and pushed to gh-pages by Travis CI

  1. Add clean gh-pages branch to your repository
git checkout --orphan gh-pages
git rm -rf .
echo "my gh-pages branch" > README.md
git add .
git commit -a -m "clean gh-pages branch"
git push origin gh-pages
@JarekParal
JarekParal / ESPExceptionDecode.bat
Created April 3, 2019 10:27 — forked from stritti/ESPExceptionDecode.bat
Decode the Exception of ESP within PlatformIO
%homedrive%%homepath%/.platformio/packages/toolchain-xtensa/bin/xtensa-lx106-elf-addr2line.exe -fp -e ./.pioenvs/nodemcuv2/firmware.elf
@JarekParal
JarekParal / KiCAD_gerbers_rename_for_Gatema_Pool_servis.py
Last active March 13, 2017 00:41 — forked from xesscorp/rename_gerbers.py
Python script for renaming KiCad Gerber files for manufactory Gatema and their Pool servis (prototype PCB)
# Original source: https://gist.github.com/xesscorp/8a2ed1b8923f04ae6366
# Edit by Jarek Paral <paral@robotikabrno.cz>
#
# KiCad outputs Gerber files with extensions that aren't recognized by the most commonly used
# PCB manufacturers. This Python script renames the files to what want manufactory Gatema for
# (company in Czech Republic which produce PCB - http://www.gatema.cz) Pool servis - prototype PCB
# (http://pcb.gatema.cz/kriteria-dat-pro-pool-servis/).
# Just execute this script in your KiCad project directory and the Gerber files will be renamed.
#