mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-26 20:00:27 +00:00

This adds an embassy hal for the Texas Instruments MSPM0 microcontroller series. So far the GPIO and time drivers have been implemented. I have tested these drivers on the following parts: - C1104 - L1306 - L2228 - G3507 - G3519 The PAC is generated at https://github.com/mspm0-rs
10 lines
254 B
TOML
10 lines
254 B
TOML
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
# replace MSPM0G3507 with your chip as listed in `probe-rs chip list`
|
|
runner = "probe-rs run --chip MSPM0G3507 --protocol=swd"
|
|
|
|
[build]
|
|
target = "thumbv6m-none-eabi"
|
|
|
|
[env]
|
|
DEFMT_LOG = "debug"
|