Calling foreign functions that return values is problematic for the
compiler -- I haven't invested enough time to come up with a good
solution.

The work around is to assign the result to an external variable.  The
drawback is the result will not be available until the rule executing
the action has completed.

results <- bool' "result"   -- Global, external variable to capture result.
action (\ [a, b, c] -> printf "result = function(%s, %s %s)" a b c) [a, b, c]

-Tom

On Sat, Jun 13, 2009 at 5:03 AM, Radamés Ajna<radama...@gmail.com> wrote:
> hi there,
>
> I've been working with haskell and atom dsl, however I'm new to haskell..
> John Van Enk inspired me with programming arduino->atmegas , with haskell,
> So here is my problem.
> With an action , action :: ([String] -> String) -> [UE] -> Atom () ,
> it's possible make calls to some precoded C functions like,
>
> setLED v = action (\[x] -> "setLED(" ++ x ++ ")") [v']
>    where v' = ue . value $ v
>
> where setLed is a precode function.
>
> I want call a precoded C function that returns some value, but action
> always give me Atom () ,
> that's I would like to do but I don't know how ..
>
>   Atom (V Int8) <  ---- "int read()"
>
>
> thanks...
> related links
> http://hackage.haskell.org/package/atom-0.0.5
> http://blog.sw17ch.com/wordpress/?p=111
> http://leepike.wordpress.com/2009/05/05/an-atomic-fibonacci-server-exploring-the-atom-haskell-dsl/
>
>
>
> Radamés
> _______________________________________________
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to