logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

readme.md (2138B)


  1. # Anne Pro 2 rev. C15 and C18 QMK firmware
  2. An ANSI-layout 60% keyboard featuring Bluetooth support and per-key RGB lighting.
  3. * Keyboard Maintainer: [bwisn](https://github.com/bwisn)
  4. * Hardware Supported: Anne Pro 2, [C15](c15/) and [C18](c18/) versions
  5. * Hardware Availability: [annepro.net](https://www.annepro.net/), [Hexcore](https://www.hexcore.xyz/annepro2)
  6. ## How to compile
  7. After setting up your build environment, you can compile the Anne Pro 2 C18 default keymap by using:
  8. make annepro2/c18:default
  9. If you want to compile the Anne Pro 2 C15 default keymap use:
  10. make annepro2/c15:default
  11. ## Installing
  12. ### Get AnnePro2 Tools
  13. If you want the executable instead of compiling it yourself, [download it here](https://ci.codetector.org/job/OpenAnnePro/job/AnnePro2-Tools/job/master/).
  14. Windows and Linux versions are available. Otherwise, follow the steps below:
  15. 1. Install the latest stable `rust` toolchain using [rustup](https://rustup.rs/)
  16. 1. Also install [Visual Studio Community edition](https://visualstudio.microsoft.com/downloads/)
  17. including the C/C++ module to prevent errors while compiling
  18. 1. Download or Clone the [AnnePro2-Tools](https://github.com/OpenAnnePro/AnnePro2-Tools) project.
  19. 1. Compile the tool using
  20. ```bash
  21. cargo build --release
  22. ```
  23. The compiled tool should be in `./target/release/annepro2_tools` (In later I will refer to this as `annepro2_tools`)
  24. ### Flashing the firmware
  25. 1. Put the keyboard into DFU/IAP mode by unplugging the keyboard, then holding ESC while plugging it back in.
  26. 1. Run annepro2_tools with the firmware you just built.
  27. **Please substitute with the correct paths and correct bin file if you chose another keymap profile.**
  28. ```bash
  29. annepro2_tools annepro2_c15_default.bin
  30. ```
  31. If the tool can't find the keyboard please double check you have the keyboard in IAP mode.
  32. See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).