joajfreitas / fcp-core

MIT License
6 stars 1 forks source link

Add arrays to IDL #3

Closed joajfreitas closed 1 month ago

joajfreitas commented 1 year ago
struct Foo {
    temperatures @0 : [u16; 4] | unit("C"),
}
struct Foo {
    temperatures @0 : Array(u16, 4) | unit("C"),
}
joajfreitas commented 2 months ago

Good one