Skip to content

Commit

Permalink
update v.2.0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jhs88 committed Aug 16, 2024
1 parent baed266 commit 5445698
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.idea
cmake-*
.DS_Store
build*
**/build*
Pico-W-Stub
2 changes: 1 addition & 1 deletion pico-examples
Submodule pico-examples updated 230 files
2 changes: 1 addition & 1 deletion pico-sdk
Submodule pico-sdk updated 977 files
2 changes: 1 addition & 1 deletion picoprobe
2 changes: 1 addition & 1 deletion picotool
Submodule picotool updated 85 files
+1 −0 .bazelrc
+5 −0 .gitignore
+102 −0 BUILD.bazel
+274 −32 CMakeLists.txt
+26 −0 MODULE.bazel
+761 −66 README.md
+0 −0 WORKSPACE
+21 −0 bazel/BUILD.bazel
+49 −0 bazel/README.md
+71 −0 bazel/binh.py
+5 −0 bazel/data_locs.cpp
+40 −0 bazel/defs.bzl
+60 −0 bazel/jsonh.py
+18 −0 bazel/mbedtls.BUILD
+34 −0 bintool/BUILD.bazel
+32 −0 bintool/CMakeLists.txt
+906 −0 bintool/bintool.cpp
+41 −0 bintool/bintool.h
+242 −0 bintool/mbedtls_wrapper.c
+60 −0 bintool/mbedtls_wrapper.h
+656 −0 bintool/metadata.h
+ bootrom.end.bin
+175 −50 cli.h
+41 −11 cmake/FindLIBUSB.cmake
+5 −0 cmake/bin.template.h
+28 −0 cmake/binh.cmake
+2 −0 cmake/jsonh.cmake
+3 −0 cmake/picotoolConfig.cmake
+6 −0 cmake/rp2350.json.template.h
+5 −0 data_locs.h
+7 −0 data_locs.template.cpp
+36 −0 default-pt.json
+0 −60 elf.h
+20 −0 elf/BUILD.bazel
+6 −0 elf/CMakeLists.txt
+94 −0 elf/addresses.h
+126 −0 elf/elf.h
+520 −0 elf/elf_file.cpp
+72 −0 elf/elf_file.h
+172 −0 elf/portable_endian.h
+20 −0 elf2uf2/BUILD.bazel
+6 −0 elf2uf2/CMakeLists.txt
+338 −0 elf2uf2/elf2uf2.cpp
+28 −0 elf2uf2/elf2uf2.h
+8 −0 errors/BUILD.bazel
+3 −0 errors/CMakeLists.txt
+16 −0 errors/errors.cpp
+41 −0 errors/errors.h
+6 −0 lib/BUILD.bazel
+27 −0 lib/CMakeLists.txt
+4,217 −0 lib/include/mbedtls_config.h
+7 −0 lib/nlohmann_json/BUILD.bazel
+126 −0 lib/nlohmann_json/CMakeLists.txt
+21 −0 lib/nlohmann_json/LICENSE.MIT
+24,766 −0 lib/nlohmann_json/single_include/nlohmann/json.hpp
+14 −0 lib/whereami/BUILD.bazel
+7 −0 lib/whereami/CMakeLists.txt
+101 −0 lib/whereami/whereami++.cpp
+66 −0 lib/whereami/whereami++.h
+801 −0 lib/whereami/whereami.c
+64 −0 lib/whereami/whereami.h
+6,545 −1,468 main.cpp
+23 −0 no_otp.cpp
+84 −0 otp.cpp
+97 −0 otp.h
+13 −0 otp_header_parser/BUILD.bazel
+18 −0 otp_header_parser/CMakeLists.txt
+389 −0 otp_header_parser/otp_header_parse.cpp
+31,174 −0 otp_header_parser/rp2350.json.h
+21 −0 picoboot_connection/BUILD.bazel
+4 −1 picoboot_connection/CMakeLists.txt
+298 −47 picoboot_connection/picoboot_connection.c
+61 −25 picoboot_connection/picoboot_connection.h
+35 −0 picoboot_connection/picoboot_connection_cxx.cpp
+11 −1 picoboot_connection/picoboot_connection_cxx.h
+26 −0 sample-permissions.json
+25 −0 sample-wl.json
+14 −0 udev/99-picotool.rules
+39 −0 xip_ram_perms.cpp
+12 −0 xip_ram_perms.h
+17 −0 xip_ram_perms/BUILD.bazel
+42 −0 xip_ram_perms/CMakeLists.txt
+62 −0 xip_ram_perms/pico_sdk_import.cmake
+192 −0 xip_ram_perms/set_perms.c
+ xip_ram_perms/xip_ram_perms.elf

0 comments on commit 5445698

Please sign in to comment.