/hal_rpi_pico-latest/ |
D | pico_sdk_version.cmake | 1 …UILD_DEFINE: PICO_SDK_VERSION_MAJOR, SDK major version number, type=int, default=Current SDK major… 2 …MAKE_CONFIG: PICO_SDK_VERSION_MAJOR, SDK major version number, type=int, default=Current SDK major… 4 …UILD_DEFINE: PICO_SDK_VERSION_MINOR, SDK minor version number, type=int, default=Current SDK minor… 5 …MAKE_CONFIG: PICO_SDK_VERSION_MINOR, SDK minor version number, type=int, default=Current SDK minor… 7 # PICO_BUILD_DEFINE: PICO_SDK_VERSION_REVISION, SDK version revision, type=int, default=Current SDK… 8 # PICO_CMAKE_CONFIG: PICO_SDK_VERSION_REVISION, SDK version revision, type=int, default=Current SDK… 10 # PICO_BUILD_DEFINE: PICO_SDK_VERSION_PRE_RELEASE_ID, Optional SDK pre-release version identifier, … 11 # PICO_CMAKE_CONFIG: PICO_SDK_VERSION_PRE_RELEASE_ID, Optional SDK pre-release version identifier, … 14 …PICO_BUILD_DEFINE: PICO_SDK_VERSION_STRING, SDK version string, type=string, default=Current SDK v… 15 …PICO_CMAKE_CONFIG: PICO_SDK_VERSION_STRING, SDK version string, type=string, default=Current SDK v…
|
D | MODULE.bazel | 3 version = "2.1.0", 6 bazel_dep(name = "platforms", version = "0.0.9") 7 bazel_dep(name = "bazel_skylib", version = "1.6.1") 8 bazel_dep(name = "rules_python", version = "0.36.0") 9 bazel_dep(name = "picotool", version = "2.1.0") 10 bazel_dep(name = "rules_cc", version = "0.0.10")
|
D | README.md | 54 1. Install CMake (at least version 3.13), python 3, a native compiler, and a GCC cross compiler
|
/hal_rpi_pico-latest/.github/workflows/scripts/ |
D | generate_multi_gcc_workflow.py | 16 version = subprocess.run([gcc_path, "--version"], capture_output=True) variable 17 stdout = version.stdout.decode('utf-8') 18 stderr = version.stderr.decode('utf-8') 24 version = m.group(1) variable 26 if version in gcc_versions: 27 … version {} in versions current path {}, this path {}".format(version, gcc_versions[version], full… 29 gcc_versions[version] = fullpath
|
/hal_rpi_pico-latest/src/common/pico_base_headers/ |
D | BUILD.bazel | 5 …PICO_BAZEL_CONFIG: PICO_SDK_VERSION_STRING, SDK version string, type=string, default=Current SDK v… 10 …AZEL_CONFIG: PICO_SDK_VERSION_MAJOR, SDK major version number, type=int, default=Current SDK major… 13 …AZEL_CONFIG: PICO_SDK_VERSION_MINOR, SDK minor version number, type=int, default=Current SDK minor… 18 # PICO_BAZEL_CONFIG: PICO_SDK_VERSION_REVISION, SDK version revision, type=int, default=Current SDK… 21 # PICO_BAZEL_CONFIG: PICO_SDK_VERSION_PRE_RELEASE_ID, Optional SDK pre-release version identifier, … 26 srcs = ["include/pico/version.h.in"], 27 outs = ["generated_include/pico/version.h"], 29 "--version-string={}".format(PICO_SDK_VERSION_STRING), 30 "--template=$(location include/pico/version.h.in)", 31 "--output=$(location generated_include/pico/version.h)", [all …]
|
D | generate_config_header.cmake | 29 …ile( ${CMAKE_CURRENT_LIST_DIR}/include/pico/version.h.in ${CMAKE_BINARY_DIR}/generated/pico_base/p…
|
/hal_rpi_pico-latest/src/rp2040/pico_platform/ |
D | platform.c | 37 uint version = (chip_id & SYSINFO_CHIP_ID_REVISION_BITS) >> SYSINFO_CHIP_ID_REVISION_LSB; in rp2040_chip_version() local 38 return (uint8_t)version; in rp2040_chip_version()
|
/hal_rpi_pico-latest/src/rp2350/pico_platform/ |
D | platform.c | 42 uint version = (chip_id & SYSINFO_CHIP_ID_REVISION_BITS) >> SYSINFO_CHIP_ID_REVISION_LSB; in rp2350_chip_version() local 43 return (uint8_t)version; in rp2350_chip_version()
|
/hal_rpi_pico-latest/tools/ |
D | CMakeLists.txt | 77 …# Assemble the version string from components instead of using PICO_SDK_VERSION_STRING, because th… 90 # todo CMAKE_CURRENT_FUNCTION_LIST_DIR ... what version? 127 "Requires version ${picotool_VERSION_REQUIRED}, " 128 "you have version ${picotool_CONSIDERED_VERSIONS}\n" 130 "to download and build the correct version" 241 # pico_set_binary_version(<TARGET> [MAJOR <version>] [MINOR <version>] [ROLLBACK <version>] [ROLLBA… 242 # Adds a version item to the metadata block, with the given major, minor and 243 # rollback version, along with the rollback rows. These are appended as arguments 244 # to PICOTOOL_EXTRA_PROCESS_ARGS if setting the rollback version, or set as compile 258 # append major version [all …]
|
D | Findpicotool.cmake | 29 … "No installed picotool with version ${picotool_VERSION_REQUIRED} found - building from source\n" 73 version ${picotool_VERSION_REQUIRED}
|
/hal_rpi_pico-latest/src/common/pico_binary_info/ |
D | CMakeLists.txt | 30 function(pico_set_program_version TARGET version) 32 target_compile_definitions(${TARGET} PRIVATE -DPICO_PROGRAM_VERSION_STRING="${version}")
|
D | binary_info.bzl | 34 "@pico-sdk//src/common/pico_base_headers:version",
|
/hal_rpi_pico-latest/src/ |
D | BUILD.bazel | 17 # These libraries sometimes need the host version even though they live
|
D | combined-docs.cmake | 10 # pick latest version
|
/hal_rpi_pico-latest/bazel/ |
D | README.md | 9 bazel_dep(name = "pico-sdk", version = "2.1.0") 110 If you need to check against a local version of Picotool, you can run the script
|
/hal_rpi_pico-latest/src/rp2_common/tinyusb/ |
D | CMakeLists.txt | 37 # unmarked version used by stdio USB
|
/hal_rpi_pico-latest/tools/pioasm/ |
D | pio_assembler.cpp | 57 void program::set_pio_version(const yy::location &l, int version) { in set_pio_version() argument 58 if (version < 0 || version > 1) { in set_pio_version() 61 pio_version = version; in set_pio_version()
|
D | CMakeLists.txt | 12 find_package(FLEX 2.5.13) # no idea about the version
|
D | pio_types.h | 362 void set_pio_version(const yy::location &l, int version);
|
/hal_rpi_pico-latest/src/rp2_common/cmsis/ |
D | CMakeLists.txt | 1 …clude other CMSIS libraries... it is likely that we always want to use the stub version of the core
|
/hal_rpi_pico-latest/src/rp2_common/pico_mbedtls/ |
D | CMakeLists.txt | 92 version.c
|
/hal_rpi_pico-latest/src/rp2_common/pico_lwip/ |
D | CMakeLists.txt | 65 # Doesn't exists in version earlier than 2.1.3
|
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/ |
D | LICENSE.txt | 49 the original version of the Work and any modifications or additions
|
/hal_rpi_pico-latest/src/rp2_common/pico_float/ |
D | float_sci_m33_vfp.S | 70 @ soft float version, via 2^x
|
/hal_rpi_pico-latest/src/rp2_common/pico_double/ |
D | double_fma_dcp.S | 545 lsrs r2,r2,#9 @ adjust mn to Q52 ready to create packed IEEE version of mn
|