Benutzer-Werkzeuge

Webseiten-Werkzeuge


snaiks

Snaiks

Signals and Systems from KiCad to C** March 2017 This page is a successor of the [[Snaiks-Study]] ---- ===== Introduction ===== {{ ::snaiks-logo.png?nolink&200

# using git clone --recursive to check out all submodules
git clone --recursive https://github.com/chaconinc/MainProject

===== Source Code ===== * https://gitlab.com/KarlZeilhofer/snaiks-cpp-lib * https://gitlab.com/KarlZeilhofer/snaiks-kicad-lib * https://gitlab.com/KarlZeilhofer/snaiks-compiler ===== Library Presentation ===== * https://gitlab.com/KarlZeilhofer/snaiks-kicad-lib-presentation * Presentation as PDF (perhaps outdated) ===== Blue Prints ===== ==== Properties ==== A Snaiks component can have properties. For example: * monoflop period * schmitt trigger limits * saturation limits * corner frequency or filter-type of a digital filter * filter coefficients * gain value * value of constants A property consists of * a value * a name * a persistent initial value * a setter method * a getter method * a method to store a changed value into the persistent memory ==== Info-System ==== A system generated by Snaiks should be fully discoverable and manipulatable during runtime. === Use cases === * change filter characteristics * change regulator parameters * adjust offset or gain * change system constants * change enable/disable flags * reset a component or the whole system * start/stop recording === Needed Features === * list inputs and outputs of an object * list properties of an object * change property values permanently ==== Any-Type Inputs/Outputs ==== Perhaps it would be useful, that not all inputs must have the same type. For example a mute gate, where the enable is bool and the signal is double. Pros: * more flexible systems Cons: * every pin must have a type specified in KiCad (could be done with net-annotators, similar to PWR_FLAG). * we cannot use a simple template-interface class any more === Proposal === * in cases, where this is really needed, a specific C class could be implemented * mixture of numbers and bool shouldn't be any problem

snaiks.txt · Zuletzt geändert: 2017/04/30 09:32 von karl