diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2025-02-05 10:32:32 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2025-02-05 10:32:32 -0500 |
commit | 4add095344df7d2a800f09de2e3869384d175c2d (patch) | |
tree | 9e53369f0fb96033dab6dc75e7ccfe38ae3ed0f6 | |
parent | eceaf16a6309fe0b579235e221fd14838889c237 (diff) |
add svd2funreg readme
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | svd2funreg/README.md | 14 |
2 files changed, 16 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5457d53 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.*.sw* +svd2funreg/main diff --git a/svd2funreg/README.md b/svd2funreg/README.md new file mode 100644 index 0000000..af327b4 --- /dev/null +++ b/svd2funreg/README.md @@ -0,0 +1,14 @@ +# svd2funreg + +This utility parses an SVD file and produces its funreg implementation. + +Compile using `make`, though be sure to fetch the `pugixml` submodule first. + +## Usage + +``` +./main STM32L476.svd > stm32l476.h +``` + +Replace the SVD and H files with those of your choosing. + |