On Thu, 14 May 2009, Maksim Yevmenkin wrote: > >> 2.1 spec says 1.28 -> 61.44 seconds range is acceptable (0x01->0x30) > > ok, do you like something like > > + if (length <= 0) > + length = 5; > + else if (length == 1) > + length = 2; > + else if (length > 61) > + length = 61; yes that is what I have too, except I've allowed 62 (as 61 gives 0x2f) iain