Stewart
Stewart
Seems like a lot of duplication across the ant classes. figured I'd start by cleaning that up first? not sure if the new file will even be built yet because...
**Is your feature request related to a problem? Please describe.** I'd like my Garmin watch to be able to control the bike resistance based on a workout **Describe the solution...
in my yaml I can do: ``` ... - node: ... args: "--ros-args --log-level debug" ``` but I haven't been able to find this documented anywhere? Is this the best...
include the correct directory
msg file: ```string NAME0="string value 0"``` works fine for c++ but not working in c#. here's the message I get: ```Unable to parse field defined as 'FieldDeclaration { Type =...
msg file: ``` int32 FAULT_OVER_TEMP=0x00000001 ... int32 FAULT_LAST=0x8000000 ``` works fine for c++ but not working in c#. here's the message I get: ```Unable to parse field defined as 'FieldDeclaration...
### Describe the bug I have a ```TextBlock``` containing several ```Run```s. The first ```Run``` ```Text``` is binding a ```double``` and the ```StringFormat``` is set. I get the following exception unless...
**Is your feature request related to a problem? Please describe.** As far as I know: right now the only way to know that one of the nodes inputs has changed...
I came up with this hack. ```c# .Class .AddConstructor(Accessibility.Public) .WithThisCall(new Dictionary{{")//hack", $"new MyType()"}}) .Class; ``` which generates ```c# public ReactiveCompressedImage()//hack new MyType()) : this(new MyType()) ``` is there a less...