-
Notifications
You must be signed in to change notification settings - Fork 776
Some STM32 updates #1040
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
Merged
Merged
Some STM32 updates #1040
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
7dae9f4
Delete a dup typo of DAC
cla7aye15I4nd 7a2b5ba
Add 'Flash Interface' into stm32f4 config
cla7aye15I4nd 2892ef3
Merge branch 'dev' into stm32f4
cla7aye15I4nd 44d4c35
elong the ppb segment
cla7aye15I4nd c6f72c7
Add device id in dbgmcu and fix critical typo
cla7aye15I4nd 747413c
Add stn32 DBG struct
cla7aye15I4nd e010183
Add CRC Support
cla7aye15I4nd f59bff8
Refactor the gpio hook
cla7aye15I4nd 6e34554
Update the hook_set/reset api
cla7aye15I4nd c45a0e6
Add stm32f407 CRC examples
cla7aye15I4nd 75c84e1
Add a ML and oled example
cla7aye15I4nd aac25da
Delete useless import
cla7aye15I4nd 2120d0f
Add header in example
cla7aye15I4nd 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| #!/usr/bin/env python3 | ||
| # | ||
| # Cross Platform and Multi Architecture Advanced Binary Emulation Framework | ||
| # | ||
|
|
||
| import sys | ||
| sys.path.append("../..") | ||
|
|
||
| from qiling.core import Qiling | ||
| from qiling.const import QL_VERBOSE | ||
| from qiling.extensions.mcu.stm32f4 import stm32f407 | ||
| from qiling.hw.external_device.oled.ssd1306 import PyGameSSD1306Spi | ||
|
|
||
|
|
||
| ql = Qiling(["../rootfs/mcu/stm32f407/ai-sine-test.elf"], | ||
| archtype="cortex_m", env=stm32f407, verbose=QL_VERBOSE.DEFAULT) | ||
|
|
||
| ql.hw.create('rcc') | ||
| ql.hw.create('pwr') | ||
| ql.hw.create('flash interface') | ||
| ql.hw.create('gpioa') | ||
| ql.hw.create('gpiob') | ||
| ql.hw.create('gpiod') | ||
| ql.hw.create('spi1') | ||
| ql.hw.create('crc') | ||
|
|
||
| oled = PyGameSSD1306Spi(dc=(ql.hw.gpiod, 5)) | ||
| ql.hw.spi1.connect(oled) | ||
|
|
||
| def indicator(ql): | ||
| ql.log.info('PA7 set') | ||
|
|
||
| ql.hw.gpioa.hook_set(7, indicator, ql) | ||
| ql.hw.systick.ratio = 1000 | ||
|
|
||
| ql.run(count=800000) | ||
Submodule rootfs
updated
3 files
| + − | mcu/stm32f407/ai-sine-test.bin | |
| + − | mcu/stm32f407/ai-sine-test.elf | |
| +2,072 −0 | mcu/stm32f407/ai-sine-test.hex |
This file contains hidden or 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
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.
missing header