1sec_debounce.xml 891 B

123456789101112131415161718192021222324252627282930
  1. <!--
  2. 1sec_debounce.xml -
  3. This file is an example pxe instruction file; it sets two
  4. PIB values at offset 0x1F1A and 0x1F1E, respecively; pxe
  5. reads a PIB file, edits it, computes a new checksum and
  6. re-writes the file;
  7. This instruction set changes the minimum pushbutton press
  8. time to 1 second;
  9. -->
  10. <pib xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  11. xsi:noNamespaceSchemaLocation="piboffset.xsd">
  12. <object name="UseMinButtonPressHoldTime">
  13. <!-- If this value is non-zero, use the MinButtonPressHoldTime -->
  14. <offset>1F1A</offset>
  15. <length>4</length>
  16. <dataHex>01000000</dataHex>
  17. </object>
  18. <object name="MinButtonPressHoldTime">
  19. <!-- values of 100, 200, 300 ... 1000 msec -->
  20. <!-- 0x64000000 = 100 msec -->
  21. <!-- 0xE8030000 = 1 sec -->
  22. <offset>1F1E</offset>
  23. <length>4</length>
  24. <dataHex>E8030000</dataHex>
  25. </object>
  26. </pib>