[third_party/pigweed] Roll 12 commits

8616c571bcec99c pw_ide: Fix for clang installed to project dir
3c8f177961affcb pw_toolchain_bazel: Add misc_files group
765f5ffc6791996 pw_toolchain_bazel: Add automagic toolchain file c
9f11ae9e29963bc pw_console: Disable private attr auto-completion
ece72da0c2594b4 roll: clang
ed6838928252163 pw_unit_test: Use googletest backend as a dep
869da39148d3373 pw_toolchain_bazel: Add getting started guide
6f73d7b7d9a6716 pw_web: Handle unrequested responses after call_id
48a065102867d7d pw_transfer: Remove small hardcoded timeout in pro
f3899e6bb5318a2 docs: Add Bazel code coverage TODO
c8c31a063f54a11 python: Remove references to non-existing setup.py
aaf149d9e874535 roll: go

https://pigweed.googlesource.com/pigweed/pigweed
third_party/pigweed Rolled-Commits: d365083b1f6176f..8616c571bcec99c
Roller-URL: https://ci.chromium.org/b/8761925880753459201
GitWatcher: ignore
CQ-Do-Not-Cancel-Tryjobs: true
Change-Id: I315b8d931feefb97da210a05223ae21b807b21b3
Reviewed-on: https://pigweed-review.googlesource.com/c/gonk/+/184708
Bot-Commit: Pigweed Roller <pigweed-roller@pigweed-service-accounts.iam.gserviceaccount.com>
Commit-Queue: Pigweed Roller <pigweed-roller@pigweed-service-accounts.iam.gserviceaccount.com>
1 file changed
tree: 713765143ffa06f90df3530820c670309d23d2aa
  1. applications/
  2. build_overrides/
  3. scripts/
  4. targets/
  5. third_party/
  6. tools/
  7. .gitignore
  8. .gitmodules
  9. .gn
  10. banner.txt
  11. bootstrap.sh
  12. BUILD.gn
  13. BUILDCONFIG.gn
  14. OWNERS
  15. pigweed.json
  16. README.md
README.md

Gonk

Getting Started

  1. Clone the repo

    git clone https://pigweed.googlesource.com/pigweed/gonk
    
  2. Source bootstrap.sh to download all compilers and tooling into the environment directory:

    . ./bootstrap.sh
    

    This should init all git submodules for you.

  3. From here on the Pigweed environment is activated. You can activate the environment in a new shell without re-running bootstrap by sourcing activate.sh

    . ./activate.sh
    

Compile:

Build for the host and device by running:

pw build

This is mostly a shortcut with nice output for running gn gen out/gn and ninja -C out/gn.

The build commands are defined in: //tools/gonk_tools/build_project.py.

Run:

Host

Run the host app and connect to it via pw-system-console:

./out/gn/host_device_simulator.speed_optimized/obj/applications/system_example/bin/system_example & \
  pw-system-console --socket-addr default \
    --proto-globs third_party/pigweed/pw_rpc/echo.proto ; \
  killall system_example

On device

Flashing

openocd -s $PW_PIGWEED_CIPD_INSTALL_DIR/share/openocd/scripts \
  -f $GONK_ROOT/targets/stm32f769i_disc0_stm32cube/openocd_stm32f7xx.cfg \
  -c "program out/gn/stm32f769i_disc0_stm32cube.size_optimized/obj/applications/system_example/bin/system_example.elf reset exit"

Updating STM32Cube

Checkout the desired commits in each of these submodules:

third_party/stm32cube_f7/cmsis_core
third_party/stm32cube_f7/cmsis_device
third_party/stm32cube_f7/hal_driver

Then run from Gonk root:

python -m pw_stm32cube_build gen_file_list third_party/stm32cube_f7