Bit fields output and toggling

Issue #348 closed
Denys Fedoryshchenko created an issue

Originally reported on Google Code with ID 348

Is it possible to add field where user can view and toggle bits of result
or "current" number?

It is highly useful while developing some applications for embedded device,
where bitfields heavily used.

Reported by nuclearcat on 2010-05-30 13:10:34

<hr> * Attachment: bits.jpeg

Comments (8)

  1. Former user Account Deleted

    ``` Here is an overview about the currently available commands to modify individual bits: Use binary display mode to show the bit pattern of a value. or(x; shl(1; ofs)): sets the bit at offset ofs (zero-based) in x and(x; not(shl(1;ofs))): clears the bit at offset ofs in x xor(x; shl(1;ofs)): toggles the bit at offset ofs in x

    This is obviously not as convenient as a GUI based input, but operates as required ```

    Reported by `wolf.lammen` on 2010-05-31 09:44:49

  2. Former user Account Deleted

    Reported by helder.pereira.correia on 2013-03-24 06:34:55 - Labels added: Type-Enhancement, OpSys-All, Usability, Component-UI

  3. Former user Account Deleted
    Hi,
    
    I have sent a pull request to add this feature:
    
    https://bitbucket.org/heldercorreia/speedcrunch/pull-request/1/add-bitfield-widget
    

    Reported by seb.szymanski on 2014-04-27 11:55:10

  4. Former user Account Deleted
    Hi, Sebastien. Left my comments on bitbucket.
    

    Reported by helder.pereira.correia on 2014-04-27 20:04:50 - Status changed: Started - Labels added: Milestone-0.12

  5. Former user Account Deleted
    Initial support added in revision bdb352b. Thanks, Sebastien.
    

    Reported by helder.pereira.correia on 2014-05-05 06:49:09 - Status changed: Fixed

  6. Former user Account Deleted
    Usability and technical discussion: https://bitbucket.org/heldercorreia/speedcrunch/pull-request/1/
    

    Reported by helder.pereira.correia on 2014-05-05 07:11:08

  7. Log in to comment