Graham Ambrose

Results 9 comments of Graham Ambrose

I see that #142 is merged in. Can I ask when is this feature going to be released?

You can use Roslyn to normalise the white space. Using a custom `FileOutputWriter` ``` c# protected override void WriteFile(string path, CodeCompileUnit cu) { using var writer = new StringWriter(); Write(writer,...

Do you want this to be standard behaviour to pass everything though Roslyn?

This change seems more about adding precision support to the `LineProtocolPoint` api than overlapping with the `LineProtocolWriter` api. But it might be worth changing the `LineProtocolPoint` to use the `LineProtocolWriter`...

As far a can see, you can use the `memory.x` to have some control over the memory layout. I was planning on using a [tiny board](https://shop.pimoroni.com/products/tiny-2040) which has 8MB of...

Thanks, I have had a look at what you linked. If I understand correctly, I can use something like this ```rust unsafe { hal::rom_data::flash_range_program(addr, data.as_ptr(), data.len()); } ``` to write...

Thanks, I was getting confused thinking I was calling this [function](https://github.com/raspberrypi/pico-sdk/blob/2062372d203b372849d573f252cf7c6dc2800c0a/src/rp2_common/hardware_flash/flash.c#L86) rather than the actual function in the ROM. So I would need something more like this; ```rust unsafe {...

I'm not too familiar with the intricacies of the yaml spec. I was expecting ``` test: |- test string with multiple lines ``` I.e. the same as example but with...

I found this issue when rendering out a k8s ConfigMap. I had the contents of a config file render as a large ugly json string and it took me a...