gitextract_mlaszepj/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── autorun.js ├── dts/ │ ├── bs_template.dts │ ├── bspm_template.dts │ └── bspwm_template.dts ├── etc/ │ ├── avahi/ │ │ └── services/ │ │ └── bone101.service │ ├── default/ │ │ ├── cloud9 │ │ └── node │ └── profile.d/ │ └── node.sh ├── lint-config.json ├── main.js ├── package.json ├── server.js ├── src/ │ ├── autorun.js │ ├── bone.js │ ├── bonescript.js │ ├── constants.js │ ├── eeprom.js │ ├── ffiimp.js │ ├── functions.js │ ├── hw_capemgr.js │ ├── hw_mainline.js │ ├── hw_oldkernel.js │ ├── hw_simulator.js │ ├── hw_universal.js │ ├── iic.js │ ├── index.d.ts │ ├── index.js │ ├── my.js │ ├── parse.js │ ├── rc.js │ ├── serial.js │ ├── server.js │ └── socket_handlers.js ├── systemd/ │ ├── bonescript-autorun.service │ ├── bonescript.service │ └── bonescript.socket └── test/ ├── TODO/ │ ├── bacon_test.js │ ├── basic_sanity.sh │ ├── constants.js │ ├── eeprom.js │ ├── fix-ssh.js │ ├── fix-ssh.sh │ ├── gitconfig │ ├── remote_bonetest.js │ ├── setdate.js │ ├── test-analogwrite.js │ ├── test-digitalread.js │ ├── test-digitalwrite.js │ ├── test-eeproms.json │ ├── test-getpinmode.js │ ├── test-globalsetuploop.js │ ├── test-i2c-accel.js │ ├── test-i2c.js │ ├── test-pocketbeagle.js │ ├── test-serial.js │ ├── test-templates.js │ ├── test-unloadslot.js │ ├── test.sh │ ├── update-bonescript.sh │ ├── watch-button.js │ ├── watch-button.sh │ └── wired_basic_test.js ├── test-analogread.js ├── test-analogwrite.js ├── test-autorun.js ├── test-bone.js ├── test-digitalread.js ├── test-digitalwrite.js ├── test-ffi.js ├── test-getpinmode.js ├── test-lint.js ├── test-math.js ├── test-pinMode.js ├── test-rpc.js ├── test-rpc_secure.js └── test-sanity.js