Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion amp-embedded-infra-lib
Submodule amp-embedded-infra-lib updated 56 files
+1 −1 .clusterfuzzlite/Dockerfile
+1 −1 .devcontainer/Dockerfile
+1 −8 .devcontainer/devcontainer.json
+0 −0 .github/CODE_OF_CONDUCT.md
+43 −2 .github/CONTRIBUTING.md
+15 −0 .github/SECURITY.md
+0 −43 .github/linters/goodcheck.yml
+0 −17 .github/matchers/gcc-problem-matcher.json
+0 −18 .github/matchers/msvc-problem-matcher.json
+13 −18 .github/workflows/ci.yml
+2 −2 .github/workflows/documentation.yml
+2 −2 .github/workflows/linting-formatting.yml
+1 −2 .github/workflows/release-please.yml
+1 −1 .github/workflows/security.yml
+5 −1 .github/workflows/social-interaction.yml
+5 −18 .github/workflows/static-analysis.yml
+35 −7 .github/workflows/validate-pr.yml
+0 −1 .mega-linter.yml
+1 −1 README.md
+0 −12 SECURITY.md
+0 −2 external/crypto/micro-ecc/CMakeLists.txt
+0 −2 external/segger_rtt/CMakeLists.txt
+22 −0 hal/interfaces/AdcMultiChannel.hpp
+1 −1 hal/interfaces/CMakeLists.txt
+0 −42 hal/interfaces/Can.cpp
+60 −10 hal/interfaces/Can.hpp
+53 −6 hal/interfaces/test/TestCan.cpp
+17 −0 hal/interfaces/test_doubles/AdcMultiChannelMock.hpp
+18 −0 hal/interfaces/test_doubles/AdcMultiChannelStub.cpp
+24 −0 hal/interfaces/test_doubles/AdcMultiChannelStub.hpp
+3 −0 hal/interfaces/test_doubles/CMakeLists.txt
+4 −8 infra/stream/StreamWriterFile.cpp
+2 −2 infra/stream/StreamWriterFile.hpp
+1 −0 infra/stream/test/CMakeLists.txt
+69 −0 infra/stream/test/TestStreamWriterFile.cpp
+25 −23 infra/util/BoundedString.hpp
+3 −0 infra/util/test/TestBoundedString.cpp
+3 −3 protobuf/echo/TracingEcho.hpp
+2 −2 services/network_instantiations/EchoInstantiation.cpp
+7 −0 services/tracer/CMakeLists.txt
+2 −2 services/tracer/TracingEchoInstantiation.hpp
+1 −0 services/tracer/TracingEchoInstantiationSecured.cpp
+42 −0 services/tracer/TracingEchoInstantiationSecured.hpp
+2 −0 services/util/CMakeLists.txt
+2 −2 services/util/EchoInstantiation.hpp
+1 −0 services/util/EchoInstantiationSecured.cpp
+47 −0 services/util/EchoInstantiationSecured.hpp
+1 −1 services/util/EchoOnSesameSymmetricKey.cpp
+1 −1 services/util/EchoOnSesameSymmetricKey.hpp
+5 −5 services/util/SesameSecured.cpp
+9 −1 services/util/SesameSecured.hpp
+7 −6 services/util/Terminal.cpp
+14 −5 services/util/Terminal.hpp
+2 −2 services/util/test/TestEchoOnSesameSymmetricKey.cpp
+1 −1 services/util/test/TestSesameSecured.cpp
+5 −4 services/util/test/TestTerminal.cpp
2 changes: 1 addition & 1 deletion amp-hal-st
Submodule amp-hal-st updated 47 files
+1 −1 .devcontainer/Dockerfile
+39 −20 .github/workflows/ci.yml
+2 −2 .github/workflows/linting-formatting.yml
+1 −1 .github/workflows/release-please.yml
+1 −1 .github/workflows/security.yml
+5 −1 .github/workflows/social-interaction.yml
+2 −2 .github/workflows/update-emil-git-tag.yml
+1 −0 .gitignore
+0 −0 .gitmodules
+14 −2 CMakeLists.txt
+26 −5 CMakePresets.json
+2 −2 hal_st/stm32fxxx/AdcDmaMultiChannelStm.cpp
+6 −2 hal_st/stm32fxxx/AdcDmaMultiChannelStm.hpp
+1 −0 hal_st/stm32fxxx/CMakeLists.txt
+4 −5 hal_st/stm32fxxx/DigitalToAnalogPinStm.hpp
+1 −1 hal_st/stm32fxxx/FlashInternalStm.cpp
+2 −2 hal_st/stm32fxxx/FlashInternalStm.hpp
+1 −0 integration_test/CMakeLists.txt
+21 −0 integration_test/flasher/CMakeLists.txt
+130 −0 integration_test/flasher/Main.cpp
+5 −0 integration_test/logic/CMakeLists.txt
+183 −0 integration_test/logic/Flash.cpp
+80 −0 integration_test/logic/Flash.hpp
+46 −0 integration_test/logic/Flash.proto
+60 −14 integration_test/logic/Tester.cpp
+29 −5 integration_test/logic/Tester.hpp
+33 −9 integration_test/logic/Testing.proto
+13 −0 integration_test/logic/test/CMakeLists.txt
+142 −0 integration_test/logic/test/TestFlash.cpp
+10 −1 integration_test/runner/CMakeLists.txt
+0 −79 integration_test/runner/FixtureEcho.cpp
+4 −80 integration_test/runner/FixtureEcho.hpp
+33 −77 integration_test/runner/Hooks.cpp
+11 −0 integration_test/runner/Main.cpp
+9 −9 integration_test/runner/StepsGpio.cpp
+12 −12 integration_test/runner/StepsUart.cpp
+5 −5 integration_test/runner/Waiting.cpp
+8 −8 integration_test/runner/Waiting.hpp
+2 −0 integration_test/tested/CMakeLists.txt
+1 −1 integration_test/tested/EchoFromTester.hpp
+3 −0 integration_test/tester/CMakeLists.txt
+6 −1 integration_test/tester/EchoFromCloud.hpp
+11 −1 integration_test/tester/ForwardingEchoToTested.hpp
+7 −2 integration_test/tester/Main.cpp
+14 −2 integration_test/tester/Tester.cpp
+49 −2 integration_test/tester/Tester.hpp
+3 −2 services/st_util/CMakeLists.txt
Loading