commit c0448e75f8e61651f3f491ec9ea499386bb5c90f Author: Blake Leverington Date: Fri Aug 11 14:03:00 2023 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2210e40 --- /dev/null +++ b/.gitignore @@ -0,0 +1,100 @@ +# ---> C++ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# ---> Emacs +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + +# ---> Linux +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + diff --git a/README.md b/README.md new file mode 100644 index 0000000..1672887 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# tdc_gpx2 + +readout software for 2 channels [0 and 1] of the tdc-gpx2 board with raspberry pi 3B SPI readout. + +This code is a fork of the original design by marvin.peter@physik.uni-giessen.de +https://github.com/marvin5300/tdc-gpx2_software \ No newline at end of file