HapaxOS V1.12 RC2

@polynil RC2 was mistakenly validating (0-127) instead of (1-128) for PC.
That will be fixed next revision. 1.11 was correct, 1.12RC2 is not.


FYI, @c.furrow 's issue had to do with non compliant syntax, which worked in 1.11, but not in 1.12.
This will NOT be fixed as non compliant syntax will not be supported, and should be fixed to improve future compatibility.

Here are a few offenders, and the corrected lines:

    # CC
    # Syntax: CC_NUMBER NAME or CC_NUMBER:DEFAULT=xx NAME
    # DEFAULT_VALUE must be a valid number between 0 and 127
    [CC]
    14 CHANCE      # this is compliant
    14:CHANCE      # this is not

    106:0 FltrMode  # this works and defines a default value of 0 as well as a name
    107:BP OnOff    # this does not work, ':' should be followed by a number for default value
    107 BP OnOff    # this works
    [/CC] 

I’ll take a look in the Instrument Definition category and look for non compliant syntax which should be fixed.

4 Likes