README.md, flow/subnet_dict.cfg : Updates

This commit is contained in:
kevin 2024-09-13 10:35:04 -04:00
parent c55f7d34ec
commit e0063a078f
2 changed files with 6 additions and 2 deletions

View File

@ -1149,6 +1149,10 @@ channel that does not exist.
- DONE: All cfg to value conversion should go through `cfg_to_value()`.
- Try using adding 'time' type and 'cfg' types to a 'log:{...}' stmt.
- print_network_fl and print_proc_dict_fl should be given from the command line.
(but it's ok to leave them as cfg flags also)
- Add 'doc' strings to all proc classes.
- Add 'doc' strings to subnet data structure.
Names
------

View File

@ -12,10 +12,10 @@
network: {
procs: {
hz_lfo: { class: sine_tone, args: { chCnt:1 }}
hz_lfo: { class: sine_tone, args: { ch_cnt:1 }}
hz_sh: { class: sample_hold, in:{ in:hz_lfo.out }}
amp_lfo: { class: sine_tone, args: { chCnt:1 }}
amp_lfo: { class: sine_tone, args: { ch_cnt:1 }}
amp_sh: { class: sample_hold, in:{ in:amp_lfo.out }}
osc: { class: sine_tone, in:{ hz: hz_sh.out }}