1
0
Fork 0
mirror of https://github.com/italicsjenga/rp-hal-boards.git synced 2025-02-23 23:57:43 +11:00

Merge pull request from jannic/features-vector_table

Enable feature "rt" when compiling vector_table example
This commit is contained in:
Jan Niehusmann 2022-08-11 19:21:07 +02:00 committed by GitHub
commit 96e15ee6de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,3 +50,8 @@ rom-v2-intrinsics = []
# irq example uses cortex-m-rt::interrupt, need rt feature for that # irq example uses cortex-m-rt::interrupt, need rt feature for that
name = "gpio_irq_example" name = "gpio_irq_example"
required-features = ["rt"] required-features = ["rt"]
[[example]]
# vector_table example uses cortex-m-rt::interrupt, need rt feature for that
name = "vector_table"
required-features = ["rt"]