forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Fixed compile error to enable removal of blue flash sequence (BLE) and speed up board start #10753
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
Closed
Conversation
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
Microchip Quad SPI flash: SST26VF016B, SST26VF016B,SST26VF016B, SST26VF064B
Co-authored-by: Dan Halbert <[email protected]>
Allow swapping LSFS USB on ESP32-P4 to USB OTG
Add I2C support to the Zephyr builds
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/
This turns on hashlib at the port level, but only for nrf52840 boards. There's a comment in mpconfigport.mk suggesting that space is already tight on nrf52833 boards.
This is enabled at the port level now.
…main Translations update from Hosted Weblate
Enable OV3660 camera support on XIAO S3
mpconfigport.h can't set a default to override circuitpy_mpconfig.h So, when using the high speed device we need to set two defines. Also, fix warning from IDF about selecting UTMI with high speed.
add studiolab_picoexpander
Fix USB on P4 EV
Update frozen libs
Implement hashlib.new('sha256') and enable it for CLUE
Fix zephyr_i2c stub
Init older M5Stack Tab5 display
…TPY_BLE_FILE_SERVICE + variable name mismatch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This fix makes it possible to disable BLE file services and remove the flashing blue light start-up sequence. That speeds up the overall start up procedure significantly for users who don't use these services.
It works well in combination with "CIRCUITPY_SKIP_SAFE_MODE_WAIT = 0" to remove both the flashing yellow and flashing blue start up sequences.
mpconfigboard.mk:
CIRCUITPY_BLE_FILE_SERVICE = 0
CIRCUITPY_SERIAL_BLE = 0
Fixed issues:
-Conditional compilation of prototype in header file without adjusting source file
-Variable name mismatch between header and source file
"PacketBuffer.c:162:6: error: no previous prototype for '_common_hal_bleio_packet_buffer_construct' [-Werror=missing-prototypes]"