@@ -16,17 +16,17 @@ compile the device(s) you want. To use, in your Cargo.toml:
16
16
``` toml
17
17
[dependencies .stm32f7 ]
18
18
version = " 0.8.0"
19
- features = [" stm32f7x2 " , " rt" ]
19
+ features = [" stm32f745 " , " rt" ]
20
20
```
21
21
22
22
The ` rt ` feature is optional and brings in support for ` cortex-m-rt ` .
23
23
24
24
In your code:
25
25
26
26
``` rust
27
- use stm32f7 :: stm32f7x2 ;
27
+ use stm32f7 :: stm32f745 ;
28
28
29
- let mut peripherals = stm32f7x2 :: Peripherals :: take (). unwrap ();
29
+ let mut peripherals = stm32f745 :: Peripherals :: take (). unwrap ();
30
30
let gpioa = & peripherals . GPIOA ;
31
31
gpioa . odr. modify (| _ , w | w . odr0 (). set_bit ());
32
32
```
@@ -38,10 +38,10 @@ https://docs.rs/svd2rust/0.15.0/svd2rust/#peripheral-api
38
38
39
39
| Module | Devices | Links |
40
40
| :------:| :-------:| :-----:|
41
+ | stm32f745 | STM32F745 | [ RM0385] ( https://www.st.com/resource/en/reference_manual/dm00124865.pdf ) , [ st.com] ( https://www.st.com/en/microcontrollers-microprocessors/stm32f7x5.html ) |
42
+ | stm32f765 | STM32F765 | [ RM0410] ( https://www.st.com/resource/en/reference_manual/dm00224583.pdf ) , [ st.com] ( https://www.st.com/en/microcontrollers-microprocessors/stm32f7x5.html ) |
41
43
| stm32f7x2 | STM32F722, STM32F732 | [ RM0431] ( https://www.st.com/resource/en/reference_manual/dm00305990.pdf ) , [ st.com] ( https://www.st.com/en/microcontrollers-microprocessors/stm32f7x2.html ) |
42
44
| stm32f7x3 | STM32F723, STM32F733 | [ RM0431] ( https://www.st.com/resource/en/reference_manual/dm00305990.pdf ) , [ st.com] ( https://www.st.com/en/microcontrollers-microprocessors/stm32f7x3.html ) |
43
- | stm32f745 | STM32F745 | [ RM0385] ( https://www.st.com/resource/en/reference_manual/dm00124865.pdf ) , [ st.com] ( https://www.st.com/en/microcontrollers-microprocessors/stm32f7x5.html ) |
44
45
| stm32f7x6 | STM32F746, STM32F756 | [ RM0385] ( https://www.st.com/resource/en/reference_manual/dm00124865.pdf ) , [ st.com] ( https://www.st.com/en/microcontrollers-microprocessors/stm32f7x6.html ) |
45
- | stm32f765 | STM32F765 | [ RM0410] ( https://www.st.com/resource/en/reference_manual/dm00224583.pdf ) , [ st.com] ( https://www.st.com/en/microcontrollers-microprocessors/stm32f7x5.html ) |
46
46
| stm32f7x7 | STM32F767, STM32F777 | [ RM0410] ( https://www.st.com/resource/en/reference_manual/dm00224583.pdf ) , [ st.com] ( https://www.st.com/en/microcontrollers-microprocessors/stm32f7x7.html ) |
47
47
| stm32f7x9 | STM32F769, STM32F778, STM32F779 | [ RM0410] ( https://www.st.com/resource/en/reference_manual/dm00224583.pdf ) , [ st.com] ( https://www.st.com/en/microcontrollers-microprocessors/stm32f7x9.html ) |
0 commit comments