-
Notifications
You must be signed in to change notification settings - Fork 46
Add config header #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Config header allows customize some bootloader parameters like USB Device Descriptor fields in `user_config.h` file.
Hey! You still up for merge? :P |
Yes! :) |
Left a comment (review) in the code for you to reply |
Sorry, but I couldn't find your review. Can you post review URL? |
Comments get inlined in the code in github, it's a matter of going to the "Files changed" tab to see them. |
Hello 👋🏼 |
Got a question. I use CubeProgrammer and want to flash the Bootlaoder onto my own custom board. Also Using an Stm32F103 microprocessor. Which File do I need to choose for the upload? |
You probably want to use the .elf or .hex files as they already contain the metadata necessary for the programmer to know where to write the firmware. You may also use the .bin file but you'll have to write the starting address of the flash (0x08000000). Below are instructions to flash the bootloader using either Cube's GUI or CLI (both are bundled in the official software package by ST). GUI Note: the following instructions rely on the GUI released in version 2.13.0 and may be subject to change.
CLI The connection interface may vary, but assuming you're using an SWD it would be something like: |
Hi @davidgfnet, we don't see you review comments in the "Files changed" section. You can have a look at this GitHub article. |
Config header allows customize some bootloader parameters like USB
Device Descriptor fields in
user_config.h
file.