Giter Club home page Giter Club logo

bintex's People

Contributors

wcampbell0x2a avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

bintex's Issues

Support multi-line bit protocols

Support the following struct:

#[derive(BinTex)]
#[bintex(bit_width = 8)]
struct Example {
    #[bintex(bits = "12")]
    a: u8,
    #[bintex(bits = "6")]
    b: u8,
}

As a bonus feature, this could also use the \bitbox[bltr] bottom,left,top,right notation for not having lines between fields.

Other examples:

The following has the u32 = 32 bits, which would fill 4-8 bit levels

#[derive(BinTex)]
#[bintex(bit_width = "8")]
struct Testing {
    #[deku(bits = "4")]
    a: u8,
    #[deku(bits = "4")]
    b: u8,
    c: u32,
}

Add Table generation for Enums

Normal Enum

This is pretty trivial for normal Enums:

#[deku(type = "u8", bits = "4")]
enum DekuTest {
    #[deku(id = "0b1001")]
    VariantA,,
    #[deku(id = "0b0110")]
    VariantB,,
}

That would just emit the enum table.

Figure DekuTest

field id
VariantA 0b1001
VariantB 0b0110

Advanced Enum

This will be difficult for advanced enums:

#[deku(type = "u8", bits = "4")]
enum DekuTest {
    #[deku(id = "0b1001")]
    VariantA( #[deku(bits = "4")] u8, u8),
}

That latex_output would emit one enum table, and another bytefield for the VariantA.

Figure DekuTest

field id
VariantA 0b1001

Bytefield VariantA

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.