Merged i2c-helper in Main

This commit is contained in:
AlexanderHD27
2025-01-12 00:16:00 +01:00
parent f4792de050
commit b5c7e5b4c1
396 changed files with 182143 additions and 14 deletions

View File

@@ -0,0 +1,8 @@
FROM ubuntu:22.04
RUN apt -y update
RUN apt -y install build-essential gcc-arm-none-eabi doxygen cmake python3
RUN mkdir /data
WORKDIR /data

View File

@@ -0,0 +1,3 @@
#!/usr/bin/bash
doxygen ./firmware/docs/Doxyfile

View File

@@ -0,0 +1,11 @@
#!/usr/bin/bash
cd ./firmware/build
rm -rf *
export PICO_SDK_PATH_OVERRIDE="/data/firmware/lib/pico-sdk"
echo $PICO_SDK_PATH_OVERRIDE
cmake ..
cmake --build . --config Debug
make -j4 all