In many places in the archon manual (e.g. pages 58 and 59) it states that both timing state definitions and slew rate definitions may use one of the defined timing constants as their values. These values are expressed in volts per us or Volts, and hence are floating point.
In fact this is one of the only very strong uses of the "constants" as opposed to the "parameters" in the archon timing core.
WDl currently does not support defining constants as floating point values due to the nature of the regex that lexes them, for example the following code in wdl is fine:
const my_const = 1
whereas the following is now
const my_const = 1.0
the error is thrown from the python regex parsing module.
Not sure whether this is quite a feature request or a bug really. I know that e.g. Tim never used constants but I often do for the reason that they are much easier to query than parsing an entire config to get out what the slew rate is, and it allows easier changing / tuning of slew rates and clock voltages at runtime.