Skip to content

Commit

Permalink
Merge pull request #2 from arribada/dependabot/submodules/note-c-2d3f0b1
Browse files Browse the repository at this point in the history
Bump note-c from `2b31718` to `2d3f0b1`
  • Loading branch information
Bucknalla authored Dec 21, 2023
2 parents f429f94 + 44fc022 commit 5a01534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion note-c
Submodule note-c updated 57 files
+22 −3 .github/workflows/ci.yml
+42 −0 .github/workflows/md5srv-tests.yml
+248 −0 .github/workflows/notecard-binary-tests.yml
+40 −0 .github/workflows/publish_docs_site.yml
+2 −1 .gitignore
+16 −0 CMakeLists.txt
+5 −0 Dockerfile
+ assets/blues-wireless.png
+ assets/blues_logo_no_text.png
+26 −0 docs/CMakeLists.txt
+13 −53 docs/Doxyfile.in
+399 −0 docs/_extensions/doxyrunner.py
+157 −0 docs/api_reference.rst
+81 −0 docs/calling_the_notecard_api.rst
+71 −0 docs/conf.py
+20 −0 docs/getting_started.rst
+18 −0 docs/index.rst
+343 −0 docs/library_initialization.rst
+28 −0 docs/ports.rst
+86 −8 n_cjson.c
+34 −4 n_cjson.h
+68 −70 n_hooks.c
+19 −17 n_request.c
+160 −46 note.h
+23 −0 scripts/build_docs.sh
+96 −0 scripts/check_libc_dependencies.sh
+36 −0 scripts/check_runner_config.sh
+2 −2 scripts/git_hooks/pre-push
+0 −7 scripts/run_doxygen.sh
+7 −0 scripts/run_md5srv.sh
+25 −0 scripts/run_tunnelmole.sh
+14 −0 scripts/wait_for_file.sh
+2 −0 test/CMakeLists.txt
+13 −0 test/hitl/card.binary/lib/notecard_binary/NotecardBinary.cpp
+1,184 −0 test/hitl/card.binary/lib/notecard_binary/NotecardBinary.h
+143 −0 test/hitl/card.binary/lib/notecard_binary/NotecardComms.cpp
+48 −0 test/hitl/card.binary/lib/notecard_binary/NotecardComms.h
+5 −0 test/hitl/card.binary/lib/notecard_binary/defines.txt
+4,918 −0 test/hitl/card.binary/lib/notecard_binary/small_img.cpp
+8 −0 test/hitl/card.binary/lib/notecard_binary/small_img.h
+30 −0 test/hitl/card.binary/platformio.ini
+17 −0 test/hitl/card.binary/src/main.cpp
+50 −0 test/hitl/card.binary/test/LOCAL_TESTING.md
+55 −0 test/hitl/card.binary/test/README.md
+88 −0 test/hitl/card.binary/test/test_binary_generators.cpp
+60 −0 test/hitl/card.binary/test/test_binary_generators.h
+442 −0 test/hitl/card.binary/test/test_card_binary.cpp
+2 −0 test/hitl/card.binary/test/test_card_binary.h
+36 −0 test/hitl/card.binary/test/test_main.cpp
+34 −0 test/hitl/card.binary/test/test_unity_util.cpp
+33 −0 test/hitl/card.binary/test/test_unity_util.h
+260 −0 test/hitl/scripts/md5srv.bats
+318 −0 test/hitl/scripts/md5srv.py
+37 −0 test/hitl/scripts/note.json
+1 −0 test/include/test_static.h
+66 −0 test/src/JPrintUnformatted_test.cpp
+73 −0 test/src/Jtolower_test.cpp

0 comments on commit 5a01534

Please sign in to comment.