1
0
mirror of https://github.com/co-dan/ocaml-wiringpi/ synced 2025-11-02 22:03:50 +01:00

Merge pull request #4 from co-dan/master

Fix the `ocamlwiring_pull_up_dn_control` stub
This commit is contained in:
Marek Kubica
2019-01-27 14:06:18 +01:00
committed by GitHub

View File

@@ -45,7 +45,7 @@ value ocamlwiring_pin_mode(value pin, value mode)
value ocamlwiring_pull_up_dn_control(value pin, value pud)
{
CAMLparam2(pin, pud);
pullUpDnControl(Int_val(pin), Int_val(pin));
pullUpDnControl(Int_val(pin), Int_val(pud));
CAMLreturn(Val_unit);
}