bool32.rising set the table's content at 'index' to 'value'
frac32 value to write
int32.positive offset in the table
int32.positive write index
None
bool32.tgl if enabled,the element at index n will only be changed if it's already > 0
objref table
int ntrig;
int op;
if (!(inlet_trig > 0))
ntrig = 0;
if ((inlet_trig > 0) && !ntrig) {
ntrig = 1;
op = attr_table.array[inlet_index + inlet_offset];
if (param_ifon && op)
attr_table.array[inlet_index + inlet_offset] =
__SSAT(inlet_value, 28) >> attr_table.GAIN;
if (!param_ifon)
attr_table.array[inlet_index + inlet_offset] =
__SSAT(inlet_value, 28) >> attr_table.GAIN;
}
if (!(inlet_trig > 0))
ntrig = 0;