Joris Putcuyps

Results 32 comments of Joris Putcuyps

Hello I also try to avoid virtual methods on my AVR, but was more thinking in template programming. Though, sometimes virtual methods can provide a nice solution. The issue I...

Perhaps being able to register simple callbacks to normal functions: ~~~~ size_t my_object_size(); // size_t (*)(); char my_object_char(size_t pos); // char (*)(size_t) ~~~~ This would not require any virtual methods...

Sure, I will try to remove the floats in ArduinoJson and see how much that gives me. Could indeed be that it won't be much, we'll see.

I currently don't have the time to figure it out, so you could close the issue for now.

Hello, thanks for the pull request, but it has been many years and I've moved on from Haskell and no longer maintain this library. Sorry. Joris

A Read and Show for the SerialPortSettings data is a good suggestion. Do you have any specific format in mind? e.g. "9600 8 n 1..."?

Actually, that is what recv is doing, reading everything until a inter byte timeout, which returns an empty string.

My Windows 7 installation is also complaining about the shared library: ~~~~ > runhaskell App ghc.exe: addDLL: libfltkc-dyn (Win32 error 126): The specified module could not be found. KateSmibConfig: :...

Currently I'm not able to build the bundled version, but don't think that will fix this: haskell shared libraries are not that well supported on Windows, and in case they...

I've found the issue with my build, the PATH was confusing my stack to use the wrong compilers. Clearing my PATH before calling `stack build --flag fltkhs:bundled` fixed it and...