Iow C. Five(伍庆耀)
Iow C. Five(伍庆耀)
````js var rpio = require("rpio"); rpio.init({mapping: "physical"}); rpio.open(8, rpio.INPUT, rpio.LOW); rpio.open(12, rpio.OUTPUT, rpio.LOW); while (true) { if (rpio.read(8)) { rpio.write(12, rpio.HIGH); } else { rpio.write(12, rpio.LOW); } } ```` This...
I failed to `make js` Here are the logs ``` emmake make PLATFORM=emscripten CHIBI_DEPENDENCIES= CHIBI=./chibi-scheme-emscripten PREFIX= CFLAGS=-O2 SEXP_USE_DL=0 EXE=.bc SO=.bc STATICFLAGS=-shared CPPFLAGS="-DSEXP_USE_STRICT_TOPLEVEL_BINDINGS=1 -DSEXP_USE_ALIGNED_BYTECODE=1 -DSEXP_USE_STATIC_LIBS=1 -DSEXP_USE_STATIC_LIBS_NO_INCLUDE=0" clibs.c chibi-scheme-static.bc VERBOSE=1 make: make...
I ran get-gauche.sh All the tests passed before `net` failed The log is ``` getaddrbyhost: expect #t -> got #f ``` This may be a little different to the actual...
I had a problem compiling PLEBTracker When I make, g++ (and clang) said `get_wch` is not defined. But I can use gcc to call `get_wch` It seem like `NCURSES_WIDECHAR` flag...