fix listing

This commit is contained in:
King Kévin 2021-02-25 16:57:53 +01:00
parent 231d281660
commit 19a0d3c5d7
1 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,7 @@ capabilities
------------ ------------
the firmware can perform following checks: the firmware can perform following checks:
- read unique ID - read unique ID
- read MCU ID - read MCU ID
- read CPU ID - read CPU ID
@ -33,6 +34,7 @@ the firmware can perform following checks:
- check MCU ID errata - check MCU ID errata
based on the check it can figure out: based on the check it can figure out:
- manufacturer - manufacturer
- chip family - chip family
- pin count - pin count
@ -42,6 +44,7 @@ identification
-------------- --------------
it is able to identify following variants: it is able to identify following variants:
- STM32F103Cx (includes STM32F101Cx) - STM32F103Cx (includes STM32F101Cx)
- CKS32F103Cx - CKS32F103Cx
- GD32F103Cx - GD32F103Cx
@ -58,14 +61,17 @@ compilation
=========== ===========
to compile the firmware yourself: to compile the firmware yourself:
- install `arm-none-eabi-gcc` to compile the firmware. - install `arm-none-eabi-gcc` to compile the firmware.
- get [linopencm3](https://libopencm3.org/) using `git submodule update --init --recursive`. - get [linopencm3](https://libopencm3.org/) using `git submodule update --init --recursive`.
- compile using `make` - compile using `make`
to flash: to flash:
- install [stm32flash](https://sourceforge.net/projects/stm32flash/) to flash using the UARt bootlaoder - install [stm32flash](https://sourceforge.net/projects/stm32flash/) to flash using the UARt bootlaoder
- flash using `make flash` - flash using `make flash`
alternatively to flash: alternatively to flash:
- install [OpenOCD](http://openocd.org/) to flash using SWD (e.g. ST-LINK/V2 programmer) - install [OpenOCD](http://openocd.org/) to flash using SWD (e.g. ST-LINK/V2 programmer)
- flash using `make flash_swd` - flash using `make flash_swd`