Home
last modified time | relevance | path

Searched refs:write (Results 1 – 15 of 15) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_lwip/tools/
Dmakefsdata.py69 fd.write("#include \"lwip/apps/fs.h\"\n")
70 fd.write("\n")
94 fd.write(f"static const unsigned char {data_var}[] = {{\n")
96 fd.write(f"\n /* {entry['comment']} */\n")
100 fd.write(" ")
102 fd.write(f"0x{b:02x},")
104 fd.write("\n")
106 fd.write("\n")
107 fd.write(f"}};\n\n")
122 fd.write(f"const struct fsdata_file {entry['file_var']}[] = {{{{\n")
[all …]
/hal_rpi_pico-latest/src/rp2350/boot_stage2/
Dpad_checksum45 ofile.write("// Padded and checksummed version of: {}\n\n".format(args.ifile))
47 ofile.write(".cpu cortex-m0plus\n")
48 ofile.write(".thumb\n\n")
49 ofile.write(".section .boot2, \"ax\"\n\n")
50 ofile.write(".global __boot2_entry_point\n")
51 ofile.write("__boot2_entry_point:\n")
54 ofile.write(".byte {}\n".format(", ".join("0x{:02x}".format(b) for b in chunk)))
/hal_rpi_pico-latest/src/rp2040/boot_stage2/
Dpad_checksum47 ofile.write("// Padded and checksummed version of: {}\n\n".format(args.ifile))
48 ofile.write(".cpu cortex-m0plus\n")
49 ofile.write(".thumb\n\n")
50 ofile.write(".section .boot2, \"ax\"\n\n")
53 ofile.write(".byte {}\n".format(", ".join("0x{:02x}".format(b) for b in chunk)))
/hal_rpi_pico-latest/tools/
Dbuild_all_headers.py71 fh.write('''/*
83 fh.write('\n// {}\n'.format(include_locations[f]))
84 fh.write('#include "{}"\n'.format(f))
86 fh.write('\n')
DCMakeLists.txt11 BRIEF_DOCS "OTP File to write"
12 FULL_DOCS "OTP File to write"
204 # used with a no_flash binary to write the UF2 to flash when dragging &
Dcopro_dis.py321 fout.write(contents)
/hal_rpi_pico-latest/src/rp2_common/pico_double/
Ddouble_fma_dcp.S89 WXUP r4,r5 @ write a to coprocessor to get its classification
91 WXUP r0,r1 @ write m and n to coprocessor to get their classifications
144 WXMS r0,r1 @ write sticky bits
145 WXMO r2,r3 @ write sticky+result bits
156 WXMS r0,r1 @ write sticky bits
157 WXMO r2,r3 @ write sticky+result bits
167 WXMS r0,r1 @ write sticky bits
168 WXMO r2,r3 @ write sticky+result bits
185 WXMS r0,r1 @ write sticky bits
186 WXMO r2,r3 @ write sticky+result bits
[all …]
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/cybt_shared_bus/
DCMakeLists.txt1 # cyw43 shared bus read and write
/hal_rpi_pico-latest/bazel/
Dgenerate_version_header.py49 output.write(
/hal_rpi_pico-latest/src/rp2_common/pico_standard_link/
Dpico_flash_region.bzl10 ctx.actions.write(flash_region_linker_fragment, file_contents)
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/include/pico/
Dbootrom.h52 typedef void* (*rom_validate_ns_buffer_fn)(const void *addr, uint32_t size, uint32_t write, uint32_…
933 static inline void* rom_validate_ns_buffer(const void *addr, uint32_t size, uint32_t write, uint32_… in rom_validate_ns_buffer() argument
935 return func(addr, size, write, ok); in rom_validate_ns_buffer()
/hal_rpi_pico-latest/src/rp2_common/hardware_dma/include/hardware/
Ddma.h238 static inline void channel_config_set_ring(dma_channel_config *c, bool write, uint size_bits) { in channel_config_set_ring() argument
242 (write ? DMA_CH0_CTRL_TRIG_RING_SEL_BITS : 0); in channel_config_set_ring()
/hal_rpi_pico-latest/docs/
Dmainpage.md3 …eforth SDK, provides the headers, libraries and build system necessary to write programs for RP-se…
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/
Dcyw43_bus_pio_spi.c369 static inline uint32_t make_cmd(bool write, bool inc, uint32_t fn, uint32_t addr, uint32_t sz) { in make_cmd() argument
370 return write << 31 | inc << 30 | fn << 28 | (addr & 0x1ffff) << 11 | sz; in make_cmd()
/hal_rpi_pico-latest/
DREADME.md4 necessary to write programs for the RP-series microcontroller-based devices such as the Raspberry P…