Manu Evans

Results 325 comments of Manu Evans

Thinking on it; you know the software and the hardware, and you probably know what's best. So ignoring my suggestion, here's the goal: Configuration so that without knowing the device...

FFT's and other time based event/feature analysis. I mean, I change what I'm doing with it every day as I work on different ideas. The thing I care about here,...

There are loads of forms of feature detection, I have observed several devices with detectable operating signals measuring RMS fluctuation. Devices with particular duty cycles are easily visible watching RMS...

I'm not looking for AC waveform features, need an oscilloscope for that! More like duty cycle features. Try it! Sample some data at a decent resolution and twiddle with it...

I just measured it rather than guessing. It does seem to be about 1hz samplerate on average. I see a bit of jitter though, and some samples arrive closer together...

Here's another odd behaviour; every 6th second it seems to report `evergycounter_` values _**instead**_. On that second it doesn't report the other values. They get skipped. Can that be fixed?...

Is there any way to correct this? Can it be typed as a reference instead of a pointer? I suspect this particular situation is causing a great many cases I've...

I tried that DLL and this particular problem was resolved. I'll run for a while and see if any of my other issues are also resolved... Cheers!

I'll definitely do that next time I notice it locking up.

`getString()` is insidiously simple: ```d const(char)[] toString() const pure nothrow @nogc { return ptr[0 .. length()]; } const(char)* ptr; size_t length() const pure nothrow @nogc { ushort len = ptr[-1];...