-
Notifications
You must be signed in to change notification settings - Fork 5k
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
[bsp][ESP32] add spi custom configuration function and enhance muti object initliz… #9643
Merged
Merged
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
55bd9b4
add spi custom configuration function and enhance muti object initliz…
1078249029 93c0eb0
update changelog
1078249029 9faac4c
submit ci files
1078249029 51d8dde
fix ci file
1078249029 15e43cd
update
1078249029 1f42ccf
formatting
1078249029 4d31cc7
delete yaml files
1078249029 56ee096
fix ble ci file
1078249029 14d5f2e
fix undefined reference to app_main error
1078249029 b1131a3
update
1078249029 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
scons.args: &scons | ||
scons_arg: | ||
- '--strict' | ||
devices.ble: | ||
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. 这个放到ci.attachconfig.yml文件内。 |
||
kconfig: | ||
- CONFIG_BSP_USING_BLE=y |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
scons.args: &scons | ||
scons_arg: | ||
- '--strict' | ||
devices.gpio: | ||
<<: *scons | ||
kconfig: | ||
- CONFIG_RT_USING_PIN=y | ||
- CONFIG_BSP_USING_GPIO=y | ||
devices.uart: | ||
kconfig: | ||
- CONFIG_RT_USING_SERIAL=y | ||
- CONFIG_RT_USING_SERIAL_V1=y | ||
- CONFIG_BSP_USING_UART=y | ||
devices.i2c: | ||
kconfig: | ||
- CONFIG_RT_USING_I2C=y | ||
- CONFIG_BSP_USING_I2C=y | ||
- CONFIG_BSP_USING_I2C0=y | ||
devices.spi: | ||
kconfig: | ||
- CONFIG_RT_USING_SPI=y | ||
- CONFIG_BSP_USING_SPI=y | ||
- CONFIG_BSP_USING_SPI2=y | ||
devices.hwtimer: | ||
kconfig: | ||
- CONFIG_RT_USING_HWTIMER=y | ||
- CONFIG_BSP_USING_HWTIMER=y | ||
- CONFIG_BSP_USING_TIMER0=y | ||
devices.adc: | ||
kconfig: | ||
- CONFIG_RT_USING_ADC=y | ||
- CONFIG_BSP_USING_ADC=y | ||
- CONFIG_BSP_USING_ADC1=y | ||
devices.pwm: | ||
kconfig: | ||
- CONFIG_RT_USING_PWM=y | ||
- CONFIG_BSP_USING_PWM=y | ||
- CONFIG_BSP_USING_PWM0=y |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
scons.args: &scons | ||
scons_arg: | ||
- '--strict' | ||
devices.wifi: | ||
kconfig: | ||
- CONFIG_BSP_USING_WIFI=y | ||
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. 这个放到ci.attachconfig.yml内 |
||
- CONFIG_RT_USING_WIFI=y | ||
- CONFIG_RT_USING_LWIP=y | ||
- CONFIG_RT_USING_NETDEV=y |
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
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.
这个soncs.args没用到可以删了。