-
Notifications
You must be signed in to change notification settings - Fork 233
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
[sw/bootloader] add TWI boot option #1108
Open
LukasP46
wants to merge
18
commits into
stnolting:main
Choose a base branch
from
LukasP46:i2c-bootloader
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+239
−30
Open
Changes from 14 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
9a5bdfb
[sw/bootloader] add TWI boot option
LukasP46 6aa1908
[sw/bootloader] disable twi by default
LukasP46 ea16b6a
[sw/bootloader] add feature switches to makefile
LukasP46 e5ea480
[docs] Add TWI bootloader capabilities
LukasP46 b7441b1
Merge branch 'main' of github.com:stnolting/neorv32 into i2c-bootloader
LukasP46 e20f251
Fix typo
LukasP46 6955eb5
[sw/bootloader] add two byte twi addressing
LukasP46 2670ee1
[sw/bootloader] fix makefile default
LukasP46 1ea1965
Merge branch 'main' of github.com:LukasP46/neorv32 into i2c-bootloader
LukasP46 cc6cd4e
[docs] Add bootloader two-byte-addressing
LukasP46 96a8dd9
[sw] Add eeprom upload tool
LukasP46 c04316a
Merge branch 'i2c-bootloader' of github.com:LukasP46/neorv32 into i2c…
LukasP46 1910266
[docs] Add eeprom upload tool
LukasP46 5fb50cf
Merge branch 'main' into i2c-bootloader
LukasP46 27320b4
[sw] remove eeprom upload script
2426943
Renaming TWI_SLAVE_ID to TWI_DEVICE_ID
3b00009
[docs] fix twi typo
b351ae6
More twi device renaming
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,6 +123,9 @@ See section https://stnolting.github.io/neorv32/#_bootloader[Bootloader] of the | |
See section <<_programming_an_external_spi_flash_via_the_bootloader>> to learn how to use an external SPI | ||
flash for nonvolatile program storage. | ||
[TIP] | ||
The bootloader also supports booting from external TWI memory. Enable it in the bootloader makefile, but be caution, enabling all features might result in a too-big binary. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. typo: "but be careful" |
||
[TIP] | ||
Executables can also be uploaded via the **on-chip debugger**. | ||
See section <<_debugging_with_gdb>> for more information. |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description should be "Set
1
to enable the usage of the TWI module (including loade executables from TWI flash option)" I think.