Skip to content

Commit 483956b

Browse files
authored
Merge pull request #603 from charliefoxtwo/feature/stm32c07
Add support for STM32C0[579] chips
2 parents 7251801 + cebce8a commit 483956b

File tree

5 files changed

+1109
-4
lines changed

5 files changed

+1109
-4
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ NOTE: At the time of writing all families are supported, so this is only useful
180180
181181
Adding support for a new family is mostly a matter of adding support for RCC.
182182
183-
Now extract the RCC peripheral registers: `./d extract-all RCC --transform ./transform-RCC.yaml`
183+
Now extract the RCC peripheral registers: `./d extract-all RCC --transform transforms/RCC.yaml`
184184
185185
Note that we have used a transform to mechanically clean up some of the RCC
186186
definitions. This will produce a YAML file for each chip model in `./tmp/RCC`.
@@ -201,6 +201,13 @@ Finally, we can merge
201201
./merge_regs.py tmp/RCC/g0*.yaml
202202
```
203203
204+
> [!Tip]
205+
> You may need to install the required packages in order to run this
206+
> ```shell
207+
> pip install xmltodict
208+
> pip install pyyaml
209+
> ```
210+
204211
This will produce `regs_merged.yaml`, which we can copy into its final resting
205212
place:
206213

0 commit comments

Comments
 (0)