Skip to content

Commit

Permalink
Update pico sdk 1.1.0 (#712)
Browse files Browse the repository at this point in the history
* update pico-sdk to 1.1.0
also correct fetch_submodule_if_empty behavior
  • Loading branch information
hathach committed Mar 10, 2021
1 parent f9817da commit 1cdd1b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions examples/make.mk
Expand Up @@ -45,16 +45,10 @@ else
SRC_C += $(subst $(TOP)/,,$(wildcard $(TOP)/$(FAMILY_PATH)/*.c))
endif

#TODO $(call fetch_submodule_if_empty,lib/sct_neopixel)

# Fetch submodules depended by family
fetch_submodule_if_empty = \
ifeq ($(wildcard $(TOP)/$1/*),) \
$(info $(shell git -C $(TOP) submodule update --init $1)) \
endif

fetch_submodule_if_empty = $(if $(wildcard $(TOP)/$1/*),,$(info $(shell git -C $(TOP) submodule update --init $1)))
ifdef DEPS_SUBMODULES
$(foreach s,$(DEPS_SUBMODULES),:$(call fetch_submodule_if_empty,$(s)))
$(foreach s,$(DEPS_SUBMODULES),$(call fetch_submodule_if_empty,$(s)))
endif

#-------------- Cross Compiler ------------
Expand Down
2 changes: 1 addition & 1 deletion hw/mcu/raspberrypi/pico-sdk
Submodule pico-sdk updated 39 files
+3 −2 .github/workflows/cmake.yml
+1 −1 README.md
+7 −7 docs/DoxygenLayout.xml
+1 −1 docs/header.html
+3 −1 docs/index.h
+6 −2 docs/main.css
+4 −4 docs/styles.css
+6 −5 docs/weblinks_page.md
+1 −1 lib/tinyusb
+2 −2 pico_sdk_version.cmake
+17 −0 src/boards/include/boards/pico.h
+0 −3 src/boards/include/boards/vgaboard.h
+2 −2 src/common/pico_base/include/pico/types.h
+4 −2 src/common/pico_binary_info/include/pico/binary_info.h
+3 −1 src/common/pico_binary_info/include/pico/binary_info/code.h
+4 −4 src/common/pico_stdlib/include/pico/stdlib.h
+3 −3 src/common/pico_time/include/pico/time.h
+26 −21 src/rp2040/hardware_regs/include/hardware/platform_defs.h
+1 −1 src/rp2_common/hardware_adc/include/hardware/adc.h
+1 −1 src/rp2_common/hardware_clocks/include/hardware/clocks.h
+0 −3 src/rp2_common/hardware_flash/include/hardware/flash.h
+8 −1 src/rp2_common/hardware_gpio/include/hardware/gpio.h
+4 −4 src/rp2_common/hardware_i2c/include/hardware/i2c.h
+5 −5 src/rp2_common/hardware_irq/include/hardware/irq.h
+9 −9 src/rp2_common/hardware_pio/include/hardware/pio.h
+5 −0 src/rp2_common/hardware_rtc/include/hardware/rtc.h
+19 −10 src/rp2_common/hardware_spi/include/hardware/spi.h
+2 −2 src/rp2_common/hardware_timer/include/hardware/timer.h
+3 −3 src/rp2_common/hardware_uart/include/hardware/uart.h
+2 −2 src/rp2_common/hardware_watchdog/include/hardware/watchdog.h
+8 −8 src/rp2_common/pico_bootsel_via_double_reset/pico_bootsel_via_double_reset.c
+1 −1 src/rp2_common/pico_double/double_init_rom.c
+1 −1 src/rp2_common/pico_float/float_init_rom.c
+1 −1 src/rp2_common/pico_multicore/multicore.c
+1 −1 src/rp2_common/pico_platform/include/pico/platform.h
+14 −1 src/rp2_common/pico_stdio_usb/include/pico/stdio_usb.h
+23 −4 src/rp2_common/pico_stdio_usb/reset_interface.c
+16 −7 test/pico_divider_test/pico_divider_test.c
+13 −3 tools/extract_configs.py

0 comments on commit 1cdd1b0

Please sign in to comment.