target/ast10x0/peripherals: align PhantomData to *const () across all structs

Replace PhantomData<UnsafeCell<()>> (_not_sync) with
PhantomData<*const ()> (_not_send_sync) in all peripheral register
wrapper structs, and add the field where it was missing entirely.

- scu/registers.rs: rename _not_sync -> _not_send_sync, update type
- smc/registers.rs: rename _not_sync -> _not_send_sync, update type,
  remove now-unused UnsafeCell import
- i2c/controller.rs: rename _not_sync -> _not_send_sync, update type,
  remove now-unused UnsafeCell import
- sgpiom/register_block.rs: add missing _not_send_sync field and import
- uart/mod.rs: add missing _not_send_sync field and import

PhantomData<*const ()> is the conventional way to opt out of both Send
and Sync regardless of other field types, and makes the intent explicit
at the struct definition.
3 files changed
tree: e110e2cb995ed096cb15786dbd38ad30c8e91044
  1. .github/
  2. docs/
  3. drivers/
  4. hal/
  5. openprot/
  6. platform/
  7. presubmit/
  8. services/
  9. target/
  10. third_party/
  11. tools/
  12. util/
  13. .bazelignore
  14. .bazelrc
  15. .bazelversion
  16. .clang-format
  17. .gitignore
  18. .semgrepignore
  19. BUILD.bazel
  20. CONTRIBUTING.md
  21. LICENSE
  22. MODULE.bazel
  23. MODULE.bazel.lock
  24. pw
  25. README.md
  26. rust-toolchain.toml
  27. workflows.json
README.md

OpenPRoT

Technical Charter

The OpenPRoT Technical Charter can be found at https://github.com/OpenPRoT/.github/blob/main/GOVERNANCE.md

Getting Started

NOTE: We are converting our build system to bazel. We recommend installing bazelisk to automatically manage bazel versions.

Available Tasks

You can run tasks using the Pigweed workflow launcher pw or bazel.

  • ./pw presubmit - Run presubmit checks: formatting, license checks, C/C++ header checks and clippy.
  • ./pw format - Run the code formatters.
  • bazel test //... - Run all tests.
  • bazel build //docs - Build documentation.

Development

The project is structured as a bazel module.

Requirements

  • Bazel. We recommend installing bazelisk to automatically manage bazel versions.

No additional tools are required - all dependencies are managed by bazel.