From b7f1f7a1fc5476307a58efe7e08c6b1b8c0d1188 Mon Sep 17 00:00:00 2001 From: internetson <59143944+internetson@users.noreply.github.com> Date: Sat, 10 Jan 2026 10:25:16 +0300 Subject: [PATCH 1/2] Update obk_config.h --- src/obk_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/obk_config.h b/src/obk_config.h index 9f1e6bbf9a..2932a93a30 100644 --- a/src/obk_config.h +++ b/src/obk_config.h @@ -256,7 +256,7 @@ #define ENABLE_DRIVER_BL0942 1 #define ENABLE_DRIVER_BL0942SPI 1 #define ENABLE_DRIVER_CSE7766 1 -// #define ENABLE_DRIVER_BMP280 1 +#define ENABLE_DRIVER_BMP280 1 // #define ENABLE_DRIVER_PT6523 1 // #define ENABLE_DRIVER_MAX6675 1 // #define ENABLE_DRIVER_TEXTSCROLLER 1 From e4d5e6f935ba48cebbd77f7fecb8d387d99f895d Mon Sep 17 00:00:00 2001 From: internetson <59143944+internetson@users.noreply.github.com> Date: Sat, 10 Jan 2026 10:28:35 +0300 Subject: [PATCH 2/2] Create c-cpp.yml --- .github/workflows/c-cpp.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000000..6a9c312e61 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck