├── LICENSE ├── README.md └── firmware ├── bluetosis.eww ├── build.cmd ├── config ├── custom_board.h ├── mitosis.h └── sdk_config.h ├── custom ├── arm5_no_packs │ ├── bluetosis.uvoptx │ └── bluetosis.uvprojx ├── armgcc │ ├── Makefile │ └── gzll_gcc_nrf51.ld └── iar │ ├── bluetosis.ewp │ └── bluetosis.icf ├── main.c ├── mitosis_ble_gzll.h ├── mitosis_keymap.h ├── program.cmd └── program.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/README.md -------------------------------------------------------------------------------- /firmware/bluetosis.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/bluetosis.eww -------------------------------------------------------------------------------- /firmware/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/build.cmd -------------------------------------------------------------------------------- /firmware/config/custom_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/config/custom_board.h -------------------------------------------------------------------------------- /firmware/config/mitosis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/config/mitosis.h -------------------------------------------------------------------------------- /firmware/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/config/sdk_config.h -------------------------------------------------------------------------------- /firmware/custom/arm5_no_packs/bluetosis.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/custom/arm5_no_packs/bluetosis.uvoptx -------------------------------------------------------------------------------- /firmware/custom/arm5_no_packs/bluetosis.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/custom/arm5_no_packs/bluetosis.uvprojx -------------------------------------------------------------------------------- /firmware/custom/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/custom/armgcc/Makefile -------------------------------------------------------------------------------- /firmware/custom/armgcc/gzll_gcc_nrf51.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/custom/armgcc/gzll_gcc_nrf51.ld -------------------------------------------------------------------------------- /firmware/custom/iar/bluetosis.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/custom/iar/bluetosis.ewp -------------------------------------------------------------------------------- /firmware/custom/iar/bluetosis.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/custom/iar/bluetosis.icf -------------------------------------------------------------------------------- /firmware/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/main.c -------------------------------------------------------------------------------- /firmware/mitosis_ble_gzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/mitosis_ble_gzll.h -------------------------------------------------------------------------------- /firmware/mitosis_keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/mitosis_keymap.h -------------------------------------------------------------------------------- /firmware/program.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/program.cmd -------------------------------------------------------------------------------- /firmware/program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joric/bluetosis/HEAD/firmware/program.sh --------------------------------------------------------------------------------