Go to file
Yuri D'Elia f149b0c607 Make Pulley::PlanMove always_inline again™
This now saves 2 bytes ;)
2022-09-15 09:18:18 +02:00
.vscode Update vscode to avr-gcc 2022-07-27 17:04:52 +02:00
cmake Make CMake the source of truth for versioning 2022-08-11 10:26:42 +02:00
lib USB cdc stdout stream 2021-10-14 14:27:56 +02:00
src Make Pulley::PlanMove always_inline again™ 2022-09-15 09:18:18 +02:00
tests Fixes after rebase onto PR#174 2022-09-13 06:53:59 +02:00
utils Update Jenkins rules to match updated cmake/ninja versions 2022-07-27 17:04:52 +02:00
.clang-format Disable preprocessor code indentation 2021-07-07 16:33:03 +02:00
.cmake-format.py Prepare parts of the build system 2021-04-19 07:03:47 +02:00
.gitignore Prepare parts of the build system 2021-04-19 07:03:47 +02:00
.pre-commit-config.yaml Drop irrelevant pre-commit exclude paths 2022-07-27 17:04:52 +02:00
CMakeLists.txt Fix test build 2022-08-11 10:26:42 +02:00
Doxyfile Update doxyfile + document modules namespace 2021-06-30 07:39:31 +02:00
README.md README: Mention the correct output filename 2022-07-27 17:04:52 +02:00
version.cmake Fix computation of CRC 2022-09-07 15:44:08 +02:00

README.md

Prusa-Firmware-MMU-Private

How to prepare build env and tools

Run ./utils/bootstrap.py

bootstrap.py will now download all the "missing" dependencies into the .dependencies folder:

  • clang-format-9.0.0-noext
  • cmake-3.22.5
  • ninja-1.10.2
  • avr-gcc-7.3.0

How to build the preliminary project so far:

Now the process is the same as in the Buddy Firmware:

./utils/build.py

builds the firmware.hex in build/mmu_release

In case you'd like to build the project directly via cmake you can use an approach like this:

mkdir build
cd build
cmake .. -G Ninja -DCMAKE_TOOLCHAIN_FILE=../cmake/AvrGcc.cmake
ninja

It will produce a MMU2SR_<version>.hex file.