Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
5ffd974
DRAFT respberry pi support
pschatzmann Sep 29, 2025
53cbf74
readme
pschatzmann Sep 29, 2025
18f94d9
standardize defines
pschatzmann Sep 29, 2025
ad72a13
doxygen
pschatzmann Sep 29, 2025
d7f5aed
README
pschatzmann Sep 29, 2025
5288c83
Raspberry PI support
pschatzmann Sep 29, 2025
67d7dfe
RPI Errors
pschatzmann Sep 29, 2025
1723fe6
RPI corrections
pschatzmann Sep 29, 2025
6dbe9f5
RPI corrections
pschatzmann Sep 29, 2025
fb994f5
RPI corrections
pschatzmann Sep 29, 2025
d0f5f95
RPI corrections
pschatzmann Sep 29, 2025
c60f3fe
RPI corrections
pschatzmann Sep 29, 2025
e355d49
RPI: fix blink example
pschatzmann Sep 29, 2025
efc2ccc
RPI: fix blink.ino
pschatzmann Sep 29, 2025
ec67de3
RPI: blink.ino
pschatzmann Sep 29, 2025
36da1d0
RPI: fix SPI
pschatzmann Sep 29, 2025
2c54c07
RPI: fix SPI
pschatzmann Sep 29, 2025
956ba4d
RPI - compile errors
pschatzmann Sep 29, 2025
a9b4bdb
RPI: I2C compile errors
pschatzmann Sep 29, 2025
d63406b
RPI: I2C compile errors
pschatzmann Sep 29, 2025
f169eaa
RPI: i2c compile errors
pschatzmann Sep 29, 2025
38e0a79
Rasperry PI
pschatzmann Sep 29, 2025
5265fb4
blink: add println
pschatzmann Sep 29, 2025
cfd08e4
RPI: Cleanup
pschatzmann Sep 29, 2025
b5cbcaa
WiFiUDPStream: cleanup
pschatzmann Sep 29, 2025
3899ac8
USE_HTTPS
pschatzmann Sep 29, 2025
afbb3b0
upgrade WolfSSL
pschatzmann Sep 29, 2025
e498fbe
Compile errors wifi-secure
pschatzmann Sep 29, 2025
d5113da
examples
pschatzmann Sep 29, 2025
73c3395
README
pschatzmann Sep 29, 2025
fb9e900
RPI
pschatzmann Sep 29, 2025
1fa3963
cleanup HardwareSetup
pschatzmann Sep 29, 2025
96ade60
Resolve IP addresses
pschatzmann Sep 29, 2025
c4d695f
SSL
pschatzmann Sep 30, 2025
1cafaf5
Unit tests
pschatzmann Sep 30, 2025
6786160
gitignroe
pschatzmann Sep 30, 2025
ef249c9
ArduinoAPI v1.5.2
pschatzmann Sep 30, 2025
571056d
wifi-secure.ino
pschatzmann Sep 30, 2025
bde8fab
https
pschatzmann Sep 30, 2025
74ed13f
README
pschatzmann Sep 30, 2025
950490b
build.sh success message
pschatzmann Sep 30, 2025
7e9160f
RPI corrections
pschatzmann Sep 30, 2025
525b877
fix misspelled raspberry_pi
pschatzmann Sep 30, 2025
7f75608
RPI: I2C compile errors
pschatzmann Sep 30, 2025
f465d36
RPI: add back uint8_t spi_bits = 8; // Default to 8 bits pe…
pschatzmann Sep 30, 2025
a90f449
RPI: link_libraries(gpiod)
pschatzmann Sep 30, 2025
30ddd5a
gpiod
pschatzmann Sep 30, 2025
b146201
RPI: add HardwareSetupRPI
pschatzmann Sep 30, 2025
866f710
Fix RPI
pschatzmann Sep 30, 2025
76968a0
rename examples to rasperry-pi
pschatzmann Sep 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
gitignroe
  • Loading branch information
pschatzmann committed Sep 30, 2025
commit 678616054b1c48539a04ea640c8314f96e96bdda
17 changes: 17 additions & 0 deletions .github/workflows/c-cpp-cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: C/C++ CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: build.sh
run: ./build.sh
63 changes: 63 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Unit Tests

on:
pull_request:
# Only run workflow if a file in these paths is modified
paths:
- ".github/workflows/unit-tests.yml"
- "ArduinoCore-API/test/**"
- "ArduinoCore-API/api/**"

push:
paths:
- ".github/workflows/unit-tests.yml"
- "ArduinoCore-API/test/**"
- "ArduinoCore-API/api/**"

jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest

env:
COVERAGE_DATA_PATH: extras/coverage-data/coverage.info

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Create link to String.h
run: echo '#include "WString.h"' > ArduinoCore-API/api/String.h

- name: Create link to String.cpp
run: echo '#include "WString.cpp"' > ArduinoCore-API/api/String.cpp

- name: Fix catch lib issues
run: echo 'add_compile_definitions(CATCH_CONFIG_NO_POSIX_SIGNALS)' >> ArduinoCore-API/test/CMakeLists.txt

- name: Relax some warings
# run: echo 'add_compile_options(-Wno-unused-function)' >> ArduinoCore-API/test/CMakeLists.txt
# run: echo 'add_compile_options(-Wno-error=all)' >> ArduinoCore-API/test/CMakeLists.txt
# run: echo 'add_compile_options(-Wno-error=unused-function)' >> ArduinoCore-API/test/CMakeLists.txt
run: sed -i 's/-Werror//g' ArduinoCore-API/test/CMakeLists.txt


# See: https://github.com/arduino/cpp-test-action/blob/main/README.md
- uses: arduino/cpp-test-action@main
with:
source-path: ArduinoCore-API/test
build-path: ArduinoCore-API/test/build
runtime-path: ArduinoCore-API/test/build/bin/test-ArduinoCore-API
coverage-exclude-paths: |
- '*/test/*'
- '/usr/*'
coverage-data-path: ${{ env.COVERAGE_DATA_PATH }}

# Temporary excluded to prevent token requirement
# See: https://github.com/codecov/codecov-action/blob/master/README.md
#- name: Code coverage
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# files: ${{ env.COVERAGE_DATA_PATH }}
# fail_ci_if_error: true
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/build
.*
.vscode

Loading